example revision in Negation Rules section

This commit is contained in:
Caio César Tavares 2012-07-18 23:07:21 -03:00
parent 2858863662
commit 981b20ff56

View file

@ -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