summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2011-10-04 23:54:12 +0000
committerAlex Gaynor <alex.gaynor@gmail.com>2011-10-04 23:54:12 +0000
commit749f0721c4ebe14f0007ae56cc31bd7bae34ba66 (patch)
tree50acc0c24e035cc54ef7e7a0c4eefa150190adf7 /docs
parent2a044732f64a8a5b26cdf11e081cd9d7b135e82a (diff)
Fixed #16985 -- corrected a few grammar errors in the docs.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16925 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/forms/formsets.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt
index 7912294dbb..37c3067f55 100644
--- a/docs/topics/forms/formsets.txt
+++ b/docs/topics/forms/formsets.txt
@@ -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=[
@@ -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 = {
@@ -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=[