aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Kyle Stanley <[email protected]>2020-06-28 00:26:53 -0400
committerGravatar Kyle Stanley <[email protected]>2020-06-28 00:26:53 -0400
commit20872a5f93fe3734ed4a84f8e1fe3d45bebb9181 (patch)
treebd446b453904cc41a62ea10762a144bed1e9a613
parentIn LinePaginator, add limit of 2000 for max_size and scale_to_size args (diff)
Fix grammar in LinePaginator.add_lines() docstring
-rw-r--r--bot/pagination.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/pagination.py b/bot/pagination.py
index 97ef08ad6..b047cf5fb 100644
--- a/bot/pagination.py
+++ b/bot/pagination.py
@@ -91,7 +91,7 @@ class LinePaginator(Paginator):
In the case that the page already contains one or more lines and the new lines would cause
`max_size` to be exceeded, a new page is created. This is done in order to make a best
- effort to avoid breaking up single lines across pages, but to keep the total length of the
+ effort to avoid breaking up single lines across pages, while keeping the total length of the
page at a reasonable size.
This function overrides the `Paginator.add_line` from inside `discord.ext.commands`.