From aeaebead18f08198b370717ae28726c065528fb1 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 3 Mar 2012 15:46:08 -0600 Subject: [PATCH] Just tweaking comments. Signed-off-by: Taylor Otwell --- laravel/autoloader.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/autoloader.php b/laravel/autoloader.php index 0ab32851..7f457084 100644 --- a/laravel/autoloader.php +++ b/laravel/autoloader.php @@ -75,8 +75,8 @@ class_alias(static::$aliases[$class], $class); return static::load_namespaced($class, $namespace, $directory); } - // If the class uses PEARish style underscores for indicating its - // directory structure, we will load the class using the PSR-0 + // If the class uses PEAR-ish style underscores for indicating its + // directory structure we'll load the class using PSR-0 standards // standards from that directory, trimming the root. $namespace = root_namespace($class, '_').'_';