Skip to content

Commit 0e56433

Browse files
committed
docs: decorate words
1 parent 9d83fd7 commit 0e56433

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

user_guide_src/source/libraries/validation.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -940,9 +940,11 @@ in_list Yes Fails if field is not within a predetermined
940940
integer No Fails if field contains anything other than
941941
an integer.
942942
is_natural No Fails if field contains anything other than
943-
a natural number: 0, 1, 2, 3, etc.
943+
a natural number: ``0``, ``1``, ``2``, ``3``
944+
, etc.
944945
is_natural_no_zero No Fails if field contains anything other than
945-
a natural number, except zero: 1, 2, 3, etc.
946+
a natural number, except zero: ``1``, ``2``,
947+
``3``, etc.
946948
is_not_unique Yes Checks the database to see if the given value ``is_not_unique[table.field,where_field,where_value]``
947949
exists. Can ignore records by field/value to
948950
filter (currently accept only one filter).
@@ -974,7 +976,7 @@ required_with Yes The field is required when any of the other
974976
fields is not `empty()`_ in the data.
975977
required_without Yes The field is required when any of the other ``required_without[field1,field2]``
976978
fields is `empty()`_ in the data.
977-
string No A generic alternative to the alpha* rules
979+
string No A generic alternative to the **alpha*** rules
978980
that confirms the element is a string
979981
timezone No Fails if field does not match a timezone
980982
per `timezone_identifiers_list()`_

0 commit comments

Comments
 (0)