File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ is_path(path: str, iterable: bool = True) -> bool
110110validate the path string and return a bool, True if it's valid
111111
112112* all public methods that accept path strings validate them first
113- * set ` iterable=False ` if you do not want interable paths to be considered valid
113+ * set ` iterable=False ` if you do not want iterable paths to be considered valid
114114
115115### function ` validate_path() `
116116
@@ -121,7 +121,7 @@ validate_path(path: str, iterable: bool = True) -> None
121121validate the path string and raise a ValidationError if it's invalid
122122
123123* all public methods that accept path strings validate them first
124- * set ` iterable=False ` if you do not want interable paths to be considered valid
124+ * set ` iterable=False ` if you do not want iterable paths to be considered valid
125125
126126### function ` split() `
127127
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ def is_path(path: str, iterable: bool = True) -> bool:
4545 """validate the path string and return a bool, True if it's valid
4646
4747 * all public methods that accept path strings validate them first
48- * set `iterable=False` if you do not want interable paths to be considered valid
48+ * set `iterable=False` if you do not want iterable paths to be considered valid
4949 """
5050 if path == '' :
5151 return True
@@ -65,7 +65,7 @@ def validate_path(path: str, iterable: bool = True) -> None:
6565 """validate the path string and raise a ValidationError if it's invalid
6666
6767 * all public methods that accept path strings validate them first
68- * set `iterable=False` if you do not want interable paths to be considered valid
68+ * set `iterable=False` if you do not want iterable paths to be considered valid
6969 """
7070 if path == '' :
7171 return
You can’t perform that action at this time.
0 commit comments