Skip to content

Commit cc032b2

Browse files
authored
docs: Fix a few typos (#424)
There are small typos in: - src/pathpicker/line_format.py - src/pathpicker/parse.py Fixes: - Should read `contiguous` rather than `continguous`. - Should read `abbreviated` rather than `abbrievated`.
1 parent 6ca5fac commit cc032b2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/pathpicker/line_format.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def is_resolvable(self) -> bool:
174174

175175
def is_git_abbreviated_path(self) -> bool:
176176
# this method mainly serves as a warning for when we get
177-
# git-abbrievated paths like ".../" that confuse users.
177+
# git-abbreviated paths like ".../" that confuse users.
178178
parts = self.path.split(os.path.sep)
179179
return len(parts) > 0 and parts[0] == "..."
180180

src/pathpicker/parse.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
# now we look at directories. The 'character class ' allowed before the '/'
6969
# is either a real character or a character and a space. This allows
7070
# multiple spaces in a directory as long as each space is followed by
71-
# a normal character, but it does not allow multiple continguous spaces
71+
# a normal character, but it does not allow multiple contiguous spaces
7272
# which would otherwise gobble up too much whitespace.
7373
#
7474
# Thus, these directories will match:
@@ -106,7 +106,7 @@
106106
# now we look at directories. The 'character class ' allowed before the '/'
107107
# is either a real character or a character and a space. This allows
108108
# multiple spaces in a directory as long as each space is followed by
109-
# a normal character, but it does not allow multiple continguous spaces
109+
# a normal character, but it does not allow multiple contiguous spaces
110110
# which would otherwise gobble up too much whitespace.
111111
#
112112
# Thus, these directories will match:

0 commit comments

Comments
 (0)