From 2a5697c12cdef8ac677dc157a59e01d5ee976b61 Mon Sep 17 00:00:00 2001 From: Daniel Anechitoaie Date: Mon, 21 Nov 2011 23:05:38 +0200 Subject: [PATCH 1/2] Added DS_Store to .gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b017e3c39..e136a846c 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -favicon.* \ No newline at end of file +favicon.* +.DS_Store \ No newline at end of file From 0000ffc8c24f39c6c4a19662a48498c2d4ed05e7 Mon Sep 17 00:00:00 2001 From: Daniel Anechitoaie Date: Mon, 21 Nov 2011 23:07:12 +0200 Subject: [PATCH 2/2] 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 288e6687e..1cbbf4e17 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));