From 66d5018dd121f8e20db38992a571487f36215a66 Mon Sep 17 00:00:00 2001 From: Gary Wilson Jr Date: Sun, 27 Jul 2008 19:05:54 +0000 Subject: [PATCH] Corrected wording in comment. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8114 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/modeltests/pagination/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/modeltests/pagination/models.py b/tests/modeltests/pagination/models.py index 4b564f2f90..834c8e5ebd 100644 --- a/tests/modeltests/pagination/models.py +++ b/tests/modeltests/pagination/models.py @@ -210,7 +210,7 @@ EmptyPage: ... [1] -# ObjectPaginator can be passed other objects with a count() method. +# ObjectPaginator can be passed other objects without a count() method. >>> class Container: ... def __len__(self): ... return 42