summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/newforms.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/newforms.txt b/docs/newforms.txt
index 4f63411875..acc28604df 100644
--- a/docs/newforms.txt
+++ b/docs/newforms.txt
@@ -748,7 +748,7 @@ form data)::
>>> f = ContactFormWithMugshot(request.POST, request.FILES)
Constructing an unbound form is the same as always -- just omit both
-form data *and* file data:
+form data *and* file data::
# Unbound form with a image field
>>> f = ContactFormWithMugshot()
@@ -1625,8 +1625,8 @@ When you use a simple ``save()`` on a form, all data -- including
many-to-many data -- is saved without the need for any additional method calls.
For example::
- # Create a form instance with POST data.
- >>> f = AuthorForm(request.POST)
+ # Create a form instance with POST data.
+ >>> f = AuthorForm(request.POST)
# Create and save the new author instance. There's no need to do anything else.
>>> new_author = f.save()