summaryrefslogtreecommitdiff
path: root/docs/forms.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-11-22 14:24:07 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-11-22 14:24:07 +0000
commite1b2e48a3eabad7c888ba966e4098667604595f5 (patch)
tree4d736acc91f044c99283628ba6971c182736106f /docs/forms.txt
parent2bb84b9c2c84a23f4011f456a74a51863b6ff8e6 (diff)
Fixed #876 -- Fixed typos in docs/forms.txt. Thanks, czhang
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1353 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/forms.txt')
-rw-r--r--docs/forms.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/forms.txt b/docs/forms.txt
index 8d2f2ead9c..6074564ce9 100644
--- a/docs/forms.txt
+++ b/docs/forms.txt
@@ -100,7 +100,7 @@ view has a number of problems:
* Even if you *do* perform validation, there's still no way to give that
information to the user is any sort of useful way.
- * You'll have to separate create a form (and view) that submits to this
+ * You'll have to separately create a form (and view) that submits to this
page, which is a pain and is redundant.
Let's dodge these problems momentarily to take a look at how you could create a
@@ -305,7 +305,7 @@ about editing an existing one? It's shockingly similar to creating a new one::
except places.PlaceDoesNotExist:
raise Http404
- # Grab the Place object is question for future use.
+ # Grab the Place object in question for future use.
place = manipulator.original_object
if request.POST: