Skip to content

Commit 003d847

Browse files
authored
Merge pull request #107 from timgates42/bugfix/typo_conjunctions
Fix simple typo: conjuctions -> conjunctions
2 parents 47038fd + 6e43c99 commit 003d847

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nameparser/parser.py

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

371371
def is_conjunction(self, piece):
372-
"""Is in the conjuctions set and not :py:func:`is_an_initial()`."""
372+
"""Is in the conjunctions set and not :py:func:`is_an_initial()`."""
373373
return piece.lower() in self.C.conjunctions and not self.is_an_initial(piece)
374374

375375
def is_prefix(self, piece):

0 commit comments

Comments
 (0)