From 0000ffc8c24f39c6c4a19662a48498c2d4ed05e7 Mon Sep 17 00:00:00 2001 From: Daniel Anechitoaie Date: Mon, 21 Nov 2011 23:07:12 +0200 Subject: [PATCH] Double "for" in comment. --- laravel/autoloader.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/autoloader.php b/laravel/autoloader.php index 288e6687..1cbbf4e1 100644 --- a/laravel/autoloader.php +++ b/laravel/autoloader.php @@ -53,8 +53,8 @@ class Autoloader { protected static function find($class) { // After PHP namespaces were introduced, most libaries ditched underscores for - // for namespaces to indicate the class directory hierarchy. We will check for - // the presence of namespace slashes to determine the directory separator. + // namespaces to indicate the class directory hierarchy. We will check for the + // presence of namespace slashes to determine the directory separator. $separator = (strpos($class, '\\') !== false) ? '\\' : '_'; $library = substr($class, 0, strpos($class, $separator));