Index: docs/newforms.txt
===================================================================
--- docs/newforms.txt	(revision 5823)
+++ docs/newforms.txt	(working copy)
@@ -748,7 +748,7 @@
     >>> 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 @@
 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()
