Skip to content

Commit

Permalink
Fixed #876 -- Fixed typos in docs/forms.txt. Thanks, czhang
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1353 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Nov 22, 2005
1 parent 2bb84b9 commit e1b2e48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/forms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit e1b2e48

Please sign in to comment.