From 9ddb49d46eef936ce9e2dfce03d57e6206d77f93 Mon Sep 17 00:00:00 2001 From: kenjis Date: Wed, 16 Feb 2022 11:41:55 +0900 Subject: [PATCH] docs: fix out of dated description --- user_guide_src/source/concepts/autoloader.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/user_guide_src/source/concepts/autoloader.rst b/user_guide_src/source/concepts/autoloader.rst index beb8da256f0b..c9aa280c7a9d 100644 --- a/user_guide_src/source/concepts/autoloader.rst +++ b/user_guide_src/source/concepts/autoloader.rst @@ -10,10 +10,9 @@ hard-coding that location into your files in a series of ``requires()`` is a mas headache and very error-prone. That's where autoloaders come in. CodeIgniter provides a very flexible autoloader that can be used with very little configuration. -It can locate individual non-namespaced classes, namespaced classes that adhere to +It can locate individual namespaced classes that adhere to `PSR-4 `_ autoloading -directory structures, and will even attempt to locate classes in common directories (like Controllers, -Models, etc). +directory structures. For performance improvement, the core CodeIgniter components have been added to the classmap.