diff --git a/docs/rules/ComparableValues.md b/docs/comparable-values.md similarity index 100% rename from docs/rules/ComparableValues.md rename to docs/comparable-values.md diff --git a/docs/rules/Between.md b/docs/rules/Between.md index 72479a61..a68017a4 100644 --- a/docs/rules/Between.md +++ b/docs/rules/Between.md @@ -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}}`. diff --git a/docs/rules/GreaterThan.md b/docs/rules/GreaterThan.md index 23b8bbee..d1e26e9f 100644 --- a/docs/rules/GreaterThan.md +++ b/docs/rules/GreaterThan.md @@ -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}}`. diff --git a/docs/rules/LessThan.md b/docs/rules/LessThan.md index 0120915a..039f958e 100644 --- a/docs/rules/LessThan.md +++ b/docs/rules/LessThan.md @@ -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}}`. diff --git a/docs/rules/Max.md b/docs/rules/Max.md index d870e5d4..b90b2ae1 100644 --- a/docs/rules/Max.md +++ b/docs/rules/Max.md @@ -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}}`. diff --git a/docs/rules/Min.md b/docs/rules/Min.md index 1373d75e..96bc4f31 100644 --- a/docs/rules/Min.md +++ b/docs/rules/Min.md @@ -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}}`.