Fixed typos

This commit is contained in:
Pascal Borreli
2012-07-24 09:31:27 +00:00
parent f969776312
commit 8a34aa5077
43 changed files with 65 additions and 65 deletions

View File

@@ -40,7 +40,7 @@ class Autoloader {
/**
* Load the file corresponding to a given class.
*
* This method is registerd in the bootstrap file as an SPL auto-loader.
* This method is registered in the bootstrap file as an SPL auto-loader.
*
* @param string $class
* @return void
@@ -55,7 +55,7 @@ class Autoloader {
return class_alias(static::$aliases[$class], $class);
}
// All classes in Laravel are staticly mapped. There is no crazy search
// All classes in Laravel are statically mapped. There is no crazy search
// routine that digs through directories. It's just a simple array of
// class to file path maps for ultra-fast file loading.
elseif (isset(static::$mappings[$class]))
@@ -102,7 +102,7 @@ class Autoloader {
protected static function load_psr($class, $directory = null)
{
// The PSR-0 standard indicates that class namespaces and underscores
// should be used to indcate the directory tree in which the class
// should be used to indicate the directory tree in which the class
// resides, so we'll convert them to slashes.
$file = str_replace(array('\\', '_'), '/', $class);