Browse Source

Merge pull request #948 from loic-sharma/patch-5

Added a missing parenthesis and semicolon.
Jason Lewis 12 years ago
parent
commit
3e9161d6e5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/documentation/validation.md

+ 1 - 1
laravel/documentation/validation.md

@@ -417,7 +417,7 @@ As mentioned above, you may even specify and receive a list of parameters in you
 	Validator::register('awesome', function($attribute, $value, $parameters)
 	Validator::register('awesome', function($attribute, $value, $parameters)
 	{
 	{
 	    return $value == $parameters[0];
 	    return $value == $parameters[0];
-	}
+	});
 
 
 In this case, the parameters argument of your validation rule would receive an array containing one element: "yes".
 In this case, the parameters argument of your validation rule would receive an array containing one element: "yes".