Merge pull request #852 from JeffreyWay/patch-1

Fix small typo in validation docs.
This commit is contained in:
Dayle Rees 2012-06-23 10:35:26 -07:00
commit b8c4af1cd8
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ ## Contents
<a name="the-basics"></a> <a name="the-basics"></a>
## The Basics ## The Basics
Almost every interactive web application needs to validate data. For instance, a registration form probably requires the password to be confirmed. Maybe the e-mail address must be unique. Validating data can be a cumbersome process. Thankfully, it isn't in Laravel. The Validator class provides as awesome array of validation helpers to make validating your data a breeze. Let's walk through an example: Almost every interactive web application needs to validate data. For instance, a registration form probably requires the password to be confirmed. Maybe the e-mail address must be unique. Validating data can be a cumbersome process. Thankfully, it isn't in Laravel. The Validator class provides an awesome array of validation helpers to make validating your data a breeze. Let's walk through an example:
#### Get an array of data you want to validate: #### Get an array of data you want to validate: