We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb4a021 commit d92d178Copy full SHA for d92d178
1 file changed
bot/exts/info/codeblock/_parsing.py
@@ -36,7 +36,7 @@
36
_RE_CODE_BLOCK = re.compile(
37
fr"""
38
(?:^| # the ticks need to start at the front of a line to be recognized
39
- \s) # or need to have a preceeding whitespace (to avoid detection of words like I'll).
+ \s) # or need to have a preceding whitespace (to avoid detection of words like I'll).
40
(?P<ticks>
41
(?P<tick>[{''.join(_TICKS)}]) # Put all ticks into a character class within a group.
42
\2* # Match previous group up to N more times to ensure the same char.
0 commit comments