From 6c35bbade626e4ce3c4a8747d4c72458c66c8f1d Mon Sep 17 00:00:00 2001 From: Lucas Cherkewski Date: Sun, 10 Jun 2012 10:13:56 -0400 Subject: [PATCH] Fix typo. --- laravel/autoloader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/autoloader.php b/laravel/autoloader.php index 296b9dbd..68e423d2 100644 --- a/laravel/autoloader.php +++ b/laravel/autoloader.php @@ -102,7 +102,7 @@ protected static function load_namespaced($class, $namespace, $directory) protected static function load_psr($class, $directory = null) { // The PSR-0 standard indicates that class namespaces and underscores - // shoould be used to indcate the directory tree in which the class + // should be used to indcate the directory tree in which the class // resides, so we'll convert them to slashes. $file = str_replace(array('\\', '_'), '/', $class);