diff options
| author | Karen Tracey <kmtracey@gmail.com> | 2010-05-12 22:53:23 +0000 |
|---|---|---|
| committer | Karen Tracey <kmtracey@gmail.com> | 2010-05-12 22:53:23 +0000 |
| commit | 8e7d2d2e6824dc69fcfef8dc6467f6d874ddc9ee (patch) | |
| tree | 7f2e79be9c9208ac585dbc2c73bbc164266595c8 /docs/topics | |
| parent | 111d361d61fd4a40281db38850e560724bd908b0 (diff) | |
Fixed #13530: Corrected a handful of doc typos. Thanks Ramiro.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13247 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics')
| -rw-r--r-- | docs/topics/forms/modelforms.txt | 2 | ||||
| -rw-r--r-- | docs/topics/pagination.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt index c93527ce70..699a6ccaea 100644 --- a/docs/topics/forms/modelforms.txt +++ b/docs/topics/forms/modelforms.txt @@ -674,7 +674,7 @@ to ``modelformset_factory`` to limit the number of extra forms displayed. >>> [x.name for x in formset.get_queryset()] [u'Charles Baudelaire', u'Paul Verlaine', u'Walt Whitman'] -If the value of ``max_num`` is geater than the number of existing related +If the value of ``max_num`` is greater than the number of existing related objects, up to ``extra`` additional blank forms will be added to the formset, so long as the total number of forms does not exceed ``max_num``:: diff --git a/docs/topics/pagination.txt b/docs/topics/pagination.txt index 4cb2fec565..70f087bd84 100644 --- a/docs/topics/pagination.txt +++ b/docs/topics/pagination.txt @@ -221,7 +221,7 @@ them both with a simple ``except InvalidPage``. ``Page`` objects ================ -.. class:: Page(object_list, number, paginator): +.. class:: Page(object_list, number, paginator) You usually won't construct :class:`Pages <Page>` by hand -- you'll get them using :meth:`Paginator.page`. |
