Skip to content

Commit a8380c3

Browse files
committed
typo
1 parent 9f80e36 commit a8380c3

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

REFERENCE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ is_path(path: str, iterable: bool = True) -> bool
110110
validate 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
121121
validate 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

datapath/_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)