From 7e15278f7d3c966ac69929b5ae242bc7fb7335d9 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 15 Jul 2011 20:02:33 -0500 Subject: [PATCH] fixing typo in validator documentation. --- documentation/start/validation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/documentation/start/validation.md b/documentation/start/validation.md index 17efcd10..7949cf9b 100644 --- a/documentation/start/validation.md +++ b/documentation/start/validation.md @@ -313,7 +313,7 @@ ### Creating Custom Validation Rules Next, remove the **Validator** alias from **application/config/aliases.php**. -Alright! You're ready to define your own validation rule. Create a function on your new validator using a **validate_rule** naming convention: +Alright! You're ready to define your own validation rule. Create a function on your new validator using a **validate_rule** naming convention. Validator methods simply need to return **true** or **false**. It couldn't be any easier, right?