diff options
author | 2020-11-22 14:59:42 -0800 | |
---|---|---|
committer | 2020-11-22 14:59:42 -0800 | |
commit | c73005f535944fb90eb72182cf0ea2bd5b36487d (patch) | |
tree | b39fa86d9cfbb4a2cf7a21380b7c8bd505ba14a4 /bot/exts/evergreen/wonder_twins.py | |
parent | make init variables more readable, fix docstring, remove redundant list (diff) |
fix typos in docstring
Diffstat (limited to 'bot/exts/evergreen/wonder_twins.py')
-rw-r--r-- | bot/exts/evergreen/wonder_twins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/wonder_twins.py b/bot/exts/evergreen/wonder_twins.py index 0623e164..afc5346e 100644 --- a/bot/exts/evergreen/wonder_twins.py +++ b/bot/exts/evergreen/wonder_twins.py @@ -19,7 +19,7 @@ class WonderTwins(Cog): @staticmethod def append_onto(phrase: str, insert_word: str) -> str: - """Appends one word onto the end of another phrase in order to format with proper the determiner""" + """Appends one word onto the end of another phrase in order to format with the proper determiner.""" if insert_word.endswith("s"): phrase = phrase.split() del phrase[0] |