summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJannis Vajen <jvajen@gmail.com>2021-03-24 07:35:24 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-03-24 07:35:55 +0100
commite7ce304125e3a1a4ac4278dba8ef9f6228dce652 (patch)
tree9f2f045bec0ff31bb3f16bb3422b64f9504b4144 /docs
parente2e371593ff6b8c9446633a233c73a57d4253aa3 (diff)
[3.2.x] Fixed page numbers in Paginator.get_elided_page_range() example in docs.
Backport of 4894a97578dbb816f142535586b0d6154d94ac8e from main
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/paginator.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/paginator.txt b/docs/ref/paginator.txt
index cd6df42eae..3c02dd6d60 100644
--- a/docs/ref/paginator.txt
+++ b/docs/ref/paginator.txt
@@ -99,7 +99,7 @@ Methods
For example, with the default values for ``on_each_side`` and ``on_ends``,
if the current page is 10 and there are 50 pages, the page range will be
``[1, 2, '…', 7, 8, 9, 10, 11, 12, 13, '…', 49, 50]``. This will result in
- pages 4, 5, and 6 to the left of and 8, 9, and 10 to the right of the
+ pages 7, 8, and 9 to the left of and 11, 12, and 13 to the right of the
current page as well as pages 1 and 2 at the start and 49 and 50 at the
end.