aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Numerlor <[email protected]>2021-08-02 14:29:18 +0200
committerGravatar Numerlor <[email protected]>2021-08-02 14:29:18 +0200
commitb5d8e5ac9f094973ac73f1998fec844586244d8b (patch)
tree9cda0b8330b87f4164737cfb60de33559605be33
parentCorrect the documented return objects (diff)
Add missing "the"
Co-authored-by: Bluenix <[email protected]>
-rw-r--r--bot/exts/info/tags.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/tags.py b/bot/exts/info/tags.py
index b6a91269a..5e3dd400d 100644
--- a/bot/exts/info/tags.py
+++ b/bot/exts/info/tags.py
@@ -400,7 +400,7 @@ def setup(bot: Bot) -> None:
def extract_tag_identifier(string: str) -> TagIdentifier:
- """Create a `TagIdentifier` instance from beginning of `string`."""
+ """Create a `TagIdentifier` instance from the beginning of `string`."""
split_string = string.removeprefix(constants.Bot.prefix).split(" ", maxsplit=2)
if len(split_string) == 1:
return TagIdentifier(None, split_string[0])