Skip to content

Commit 6e43c99

Browse files
committed
Fix simple typo: conjuctions -> conjunctions
Closes #106
1 parent 1d0b8f8 commit 6e43c99

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nameparser/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ def is_title(self, value):
305305
return lc(value) in self.C.titles
306306

307307
def is_conjunction(self, piece):
308-
"""Is in the conjuctions set and not :py:func:`is_an_initial()`."""
308+
"""Is in the conjunctions set and not :py:func:`is_an_initial()`."""
309309
return piece.lower() in self.C.conjunctions and not self.is_an_initial(piece)
310310

311311
def is_prefix(self, piece):

0 commit comments

Comments
 (0)