summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2007-02-26 05:07:54 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2007-02-26 05:07:54 +0000
commitffb62e0c02ddcac1e7da6eaa5319a4ef72c13394 (patch)
tree5f9d739058733ae6701e465ba5a8c038d4f8c12f /docs
parent6bd07383c0b06790c209de365e8e17ae125f490b (diff)
Fixed #3249: small doc fix to pagination documentation. Thanks, Nikolaus Schlemm.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4593 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/generic_views.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/generic_views.txt b/docs/generic_views.txt
index 3131fe7fe2..a136c72a07 100644
--- a/docs/generic_views.txt
+++ b/docs/generic_views.txt
@@ -686,7 +686,7 @@ A page representing a list of objects.
* ``paginate_by``: An integer specifying how many objects should be
displayed per page. If this is given, the view will paginate objects with
``paginate_by`` objects per page. The view will expect either a ``page``
- query string parameter (via ``GET``) containing a zero-indexed page
+ query string parameter (via ``GET``) containing a 1-based page
number, or a ``page`` variable specified in the URLconf. See
"Notes on pagination" below.