From 981b20ff563d10a533f96d1418899b797324713e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caio=20Ce=CC=81sar=20Tavares?= Date: Wed, 18 Jul 2012 23:07:21 -0300 Subject: [PATCH] example revision in Negation Rules section --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 229efae6..628f5930 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ validated object as the first node in the chain. You can use the `v::not()` to negate any rule: - v::not(v::int())-validate(10); //false, input must not be integer + v::not(v::int())->validate(10); //false, input must not be integer ### Validator Reuse