From 6d8804234676a8b06c624c2c0f1e8bfde6540337 Mon Sep 17 00:00:00 2001 From: ubernostrum Date: Fri, 15 Aug 2008 11:50:22 +0000 Subject: [PATCH] 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 --- docs/forms.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/forms.txt b/docs/forms.txt index b43c7c01..f25d5c57 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) -- 2.11.4.GIT