From 50d9bed1d5408f7a6d86a5a96f71edbba62b20bf Mon Sep 17 00:00:00 2001 From: Phaneendra Chiruvella Date: Wed, 28 Aug 2013 16:05:46 +0530 Subject: [PATCH] [1.5.x] Minor spelling correction in ModelForms docs Backport of 2fbf949760 from master --- docs/topics/forms/modelforms.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt index 6205d798c56..34fb9b957d3 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::