Browse Source

Merge pull request #792 from asdfgh746/develop

Fix typo.
Taylor Otwell 12 years ago
parent
commit
14868a5fd5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/autoloader.php

+ 1 - 1
laravel/autoloader.php

@@ -102,7 +102,7 @@ class Autoloader {
 	protected static function load_psr($class, $directory = null)
 	protected static function load_psr($class, $directory = null)
 	{
 	{
 		// The PSR-0 standard indicates that class namespaces and underscores
 		// 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.
 		// resides, so we'll convert them to slashes.
 		$file = str_replace(array('\\', '_'), '/', $class);
 		$file = str_replace(array('\\', '_'), '/', $class);