summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarc Tamlyn <marc.tamlyn@gmail.com>2013-08-28 03:56:54 -0700
committerMarc Tamlyn <marc.tamlyn@gmail.com>2013-08-28 03:56:54 -0700
commit5b889b2408eeaf72f45d8f97c114d8ba9f540726 (patch)
tree5a8c1779bfc0f4be9569865b722664f156df2c84 /docs
parent095643e69145d6899313c518fdd39919c9a89908 (diff)
parent2fbf9497609168c93aa35691f06bcc4edaa86d77 (diff)
Merge pull request #1524 from pcx/master
Minor spelling correction in ModelForms docs
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/forms/modelforms.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt
index a823c8acb5..91aad0a798 100644
--- a/docs/topics/forms/modelforms.txt
+++ b/docs/topics/forms/modelforms.txt
@@ -17,7 +17,7 @@ model, and you want to create a form that lets people submit comments. In this
case, it would be redundant to define the field types in your form, because
you've already defined the fields in your model.
-For this reason, Django provides a helper class that let you create a ``Form``
+For this reason, Django provides a helper class that lets you create a ``Form``
class from a Django model.
For example::