Move documentation about "Comparable Values"

This documentation is in the "rules" directory, but it should be outside
that directory since the "rules" directory is supposed to only have
documentation about rules.

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
This commit is contained in:
Henrique Moody 2019-05-11 17:34:42 +02:00
parent 6e4927a621
commit b815fdff92
No known key found for this signature in database
GPG key ID: 221E9281655813A6
6 changed files with 5 additions and 5 deletions

View file

@ -11,7 +11,7 @@ v::intVal()->between(10, 20)->validate(20); // true
```
Validation makes comparison easier, check out our supported
[comparable values](ComparableValues.md).
[comparable values](../comparable-values.md).
Message template for this validator includes `{{minValue}}` and `{{maxValue}}`.

View file

@ -10,7 +10,7 @@ v::greaterThan(10)->validate(9); // false
```
Validation makes comparison easier, check out our supported
[comparable values](ComparableValues.md).
[comparable values](../comparable-values.md).
Message template for this validator includes `{{compareTo}}`.

View file

@ -10,7 +10,7 @@ v::lessThan(10)->validate(10); // false
```
Validation makes comparison easier, check out our supported
[comparable values](ComparableValues.md).
[comparable values](../comparable-values.md).
Message template for this validator includes `{{compareTo}}`.

View file

@ -11,7 +11,7 @@ v::max(10)->validate(11); // false
```
Validation makes comparison easier, check out our supported
[comparable values](ComparableValues.md).
[comparable values](../comparable-values.md).
Message template for this validator includes `{{compareTo}}`.

View file

@ -11,7 +11,7 @@ v::intVal()->min(10)->validate(11); // true
```
Validation makes comparison easier, check out our supported
[comparable values](ComparableValues.md).
[comparable values](../comparable-values.md).
Message template for this validator includes `{{compareTo}}`.