diff options
author | 2019-11-09 10:50:54 +0100 | |
---|---|---|
committer | 2019-11-09 10:50:54 +0100 | |
commit | 32caead77e4bad04689892a29005faa3ffde2e83 (patch) | |
tree | ff23088d804e65b87c3a5d5c87749f31625f93fc | |
parent | Add missing docstring (diff) |
Adjust docstring asterisk to backtick for consistency
-rw-r--r-- | tests/bot/rules/test_links.py | 2 |
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) |