aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar kwzrd <[email protected]>2019-11-09 10:50:54 +0100
committerGravatar kwzrd <[email protected]>2019-11-09 10:50:54 +0100
commit32caead77e4bad04689892a29005faa3ffde2e83 (patch)
treeff23088d804e65b87c3a5d5c87749f31625f93fc
parentAdd missing docstring (diff)
Adjust docstring asterisk to backtick for consistency
-rw-r--r--tests/bot/rules/test_links.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bot/rules/test_links.py b/tests/bot/rules/test_links.py
index be832843b..40336beb0 100644
--- a/tests/bot/rules/test_links.py
+++ b/tests/bot/rules/test_links.py
@@ -18,7 +18,7 @@ class Case(NamedTuple):
def msg(author: str, total_links: int) -> FakeMessage:
- """Makes a message with *total_links* links."""
+ """Makes a message with `total_links` links."""
content = " ".join(["https://pydis.com"] * total_links)
return FakeMessage(author=author, content=content)