aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ToxicKidz <[email protected]>2021-03-28 18:12:20 -0400
committerGravatar GitHub <[email protected]>2021-03-28 18:12:20 -0400
commit59dd861ca822f8dcef4c73732300e0f737b3bfa1 (patch)
tree5ddb83779e1de6e8a2dd551c8da8d4e67d281bbe
parentFilter codeblick escapes and allow no mentions for !raw command (diff)
Update bot/exts/info/information.py
Co-authored-by: Joe Banks <[email protected]>
-rw-r--r--bot/exts/info/information.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/information.py b/bot/exts/info/information.py
index ce35df470..0555544ce 100644
--- a/bot/exts/info/information.py
+++ b/bot/exts/info/information.py
@@ -448,7 +448,7 @@ class Information(Cog):
def add_content(title: str, content: str) -> None:
paginator.add_line(f'== {title} ==\n')
# Replace backticks as it breaks out of code blocks.
- # An invisble character seemed to be the most reasonable solution. We hope it's not close to 2000.
+ # An invisible character seemed to be the most reasonable solution. We hope it's not close to 2000.
paginator.add_line(content.replace('`', '`\u200b'))
paginator.close_page()