Browse Source

fixing some commits i accidently overwrote.

Taylor Otwell 13 years ago
parent
commit
a675b05237
2 changed files with 7 additions and 7 deletions
  1. 2 2
      laravel/autoloader.php
  2. 5 5
      laravel/validator.php

+ 2 - 2
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));

+ 5 - 5
laravel/validator.php

@@ -394,7 +394,7 @@ class Validator {
 	}
 
 	/**
-	 * Validate than an attribute is a valid e-mail address.
+	 * Validate that an attribute is a valid e-mail address.
 	 *
 	 * @param  string  $attribute
 	 * @param  mixed   $value
@@ -406,7 +406,7 @@ class Validator {
 	}
 
 	/**
-	 * Validate than an attribute is a valid URL.
+	 * Validate that an attribute is a valid URL.
 	 *
 	 * @param  string  $attribute
 	 * @param  mixed   $value
@@ -444,7 +444,7 @@ class Validator {
 	}
 
 	/**
-	 * Validate than an attribute contains only alphabetic characters.
+	 * Validate that an attribute contains only alphabetic characters.
 	 *
 	 * @param  string  $attribute
 	 * @param  mixed   $value
@@ -456,7 +456,7 @@ class Validator {
 	}
 
 	/**
-	 * Validate than an attribute contains only alpha-numeric characters.
+	 * Validate that an attribute contains only alpha-numeric characters.
 	 *
 	 * @param  string  $attribute
 	 * @param  mixed   $value
@@ -468,7 +468,7 @@ class Validator {
 	}
 
 	/**
-	 * Validate than an attribute contains only alpha-numeric characters, dashes, and underscores.
+	 * Validate that an attribute contains only alpha-numeric characters, dashes, and underscores.
 	 *
 	 * @param  string  $attribute
 	 * @param  mixed   $value