summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Meers <simon@simonmeers.com>2011-03-22 23:24:13 +0000
committerSimon Meers <simon@simonmeers.com>2011-03-22 23:24:13 +0000
commitc5b476e22ac58bd927f9aa12b12976b76400c4b9 (patch)
tree8c8b1c1ed9f66b0868fcfcca672303c366aefd42
parent1332e898520a7f3c580ac0be6136ecf5be07b5c5 (diff)
downloaddjango-c5b476e22ac58bd927f9aa12b12976b76400c4b9.tar.gz
[1.2.X] Fixed typo in forms API documentation.
Backport of r15896 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@15899 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/ref/forms/api.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/forms/api.txt b/docs/ref/forms/api.txt
index e0aa73a289..747d1b74d2 100644
--- a/docs/ref/forms/api.txt
+++ b/docs/ref/forms/api.txt
@@ -384,7 +384,7 @@ errors. For example, you might want to present required form rows in bold and
highlight errors in red.
The :class:`Form` class has a couple of hooks you can use to add ``class``
-attributes to required rows or to rows with errors: simple set the
+attributes to required rows or to rows with errors: simply set the
:attr:`Form.error_css_class` and/or :attr:`Form.required_css_class`
attributes::