Skip to content

Commit f9b37a8

Browse files
author
Sylvain MARIE
committed
Minor edits
1 parent 4d036c7 commit f9b37a8

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

valid8/entry_points.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,17 @@ class NonePolicy(object):
2929
__slots__ = []
3030

3131
SKIP = 1
32-
""" If this policy is selected, None values will aways be valid (validation routines will not be executed) """
32+
""" If this policy is selected, None values will always be valid (validation routines will not be executed) """
3333
FAIL = 2
34-
""" If this policy is selected, None values will aways be invalid (validation routines will not be executed) """
34+
""" If this policy is selected, None values will always be invalid (validation routines will not be executed) """
3535
VALIDATE = 3
3636
""" If this policy is selected, None values will be treated exactly like other values and follow the same
3737
validation process."""
3838

3939

4040
class NoneArgPolicy(NonePolicy):
41-
""" This enumeration extends `NonePolicy` to add policies specific to function input validation used in @validate... decorators """
41+
""" This enumeration extends `NonePolicy` to add policies specific to function input validation used in
42+
@validate... decorators """
4243

4344
__slots__ = []
4445

0 commit comments

Comments
 (0)