Skip to content

Commit

Permalink
Fixed #16985 -- corrected a few grammar errors in the docs.
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16925 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
alex committed Oct 4, 2011
1 parent 2a04473 commit 749f072
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/topics/forms/formsets.txt
Expand Up @@ -273,7 +273,7 @@ getting to that data.

Default: ``False``

Lets create a formset with the ability to order::
Lets you create a formset with the ability to order::

>>> ArticleFormSet = formset_factory(ArticleForm, can_order=True)
>>> formset = ArticleFormSet(initial=[
Expand All @@ -294,7 +294,7 @@ Lets create a formset with the ability to order::

This adds an additional field to each form. This new field is named ``ORDER``
and is an ``forms.IntegerField``. For the forms that came from the initial
data it automatically assigned them a numeric value. Lets look at what will
data it automatically assigned them a numeric value. Let's look at what will
happen when the user changes these values::

>>> data = {
Expand Down Expand Up @@ -329,7 +329,7 @@ happen when the user changes these values::

Default: ``False``

Lets create a formset with the ability to delete::
Lets you create a formset with the ability to delete::

>>> ArticleFormSet = formset_factory(ArticleForm, can_delete=True)
>>> formset = ArticleFormSet(initial=[
Expand Down

0 comments on commit 749f072

Please sign in to comment.