diff options
-rw-r--r-- | bot/exts/utils/snekbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utils/snekbox.py b/bot/exts/utils/snekbox.py index 718cff890..49f1be17b 100644 --- a/bot/exts/utils/snekbox.py +++ b/bot/exts/utils/snekbox.py @@ -120,7 +120,7 @@ class Snekbox(Cog): Use the first code block, but prefer a fenced code block. If there are several fenced code blocks, concatenate only the fenced code blocks. - Retrun a list of code blocks if any, otherwise return a list with a single string of code. + Return a list of code blocks if any, otherwise return a list with a single string of code. """ if match := list(FORMATTED_CODE_REGEX.finditer(code)): blocks = [block for block in match if block.group("block")] |