diff options
| author | James Bennett <ubernostrum@gmail.com> | 2008-08-15 11:50:22 +0000 |
|---|---|---|
| committer | James Bennett <ubernostrum@gmail.com> | 2008-08-15 11:50:22 +0000 |
| commit | e149bee93ef45675e9ef88e6926041fc9c898c45 (patch) | |
| tree | 7ab1694dbc385651403bc69fad28345145f89f0f | |
| parent | ece6e166e2a53b931d2dad04dab555d2b346a364 (diff) | |
Fixed #8277: corrected minor typo in docs/forms.txt.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8367 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | docs/forms.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/forms.txt b/docs/forms.txt index b43c7c01f8..f25d5c57d5 100644 --- a/docs/forms.txt +++ b/docs/forms.txt @@ -2153,7 +2153,7 @@ form:: ... pub_date = forms.DateField() You might want to allow the user to create several articles at once. To create -a formset of out of an ``ArticleForm`` you would do:: +a formset out of an ``ArticleForm`` you would do:: >>> from django.forms.formsets import formset_factory >>> ArticleFormSet = formset_factory(ArticleForm) |
