From ed747637502767578d01fb971b279316f27a354f Mon Sep 17 00:00:00 2001 From: Joseph Kocherhans Date: Mon, 3 Dec 2007 16:18:23 +0000 Subject: [PATCH] Fixed #6114. Fixed a typo in the modelforms docs. Thanks, Martin Conte Mac Donell. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6863 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/modelforms.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modelforms.txt b/docs/modelforms.txt index 8580fe1dbd7e7..7b5975e51efc7 100644 --- a/docs/modelforms.txt +++ b/docs/modelforms.txt @@ -276,7 +276,7 @@ model fields: for the missing, but required fields, or use ``save(commit=False)`` and manually set anyextra required fields:: - instance = Instance(requiured_field='value') + instance = Instance(required_field='value') form = InstanceForm(instance, request.POST) new_instance = form.save()