summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Plant <L.Plant.98@cantab.net>2010-09-07 20:26:23 +0000
committerLuke Plant <L.Plant.98@cantab.net>2010-09-07 20:26:23 +0000
commit01e8d75c203231468d00ec726511b577eaa39b09 (patch)
tree22ec532882cfd04be15a6bd689cb9b347fc90c4c
parent17ae1d3262e777c0d3c62e30090050363de5a679 (diff)
[1.2.X] Fixed #14205 - Tiny grammar fix in form validation documentation
Thanks to zendak for report and patch. Backport of [13687] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13689 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/ref/forms/validation.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/forms/validation.txt b/docs/ref/forms/validation.txt
index 6cc3280e06..1c047f246f 100644
--- a/docs/ref/forms/validation.txt
+++ b/docs/ref/forms/validation.txt
@@ -178,7 +178,7 @@ Using validators
.. versionadded:: 1.2
Django's form (and model) fields support use of simple utility functions and
-classes known as validators. These can passed to a field's constructor, via
+classes known as validators. These can be passed to a field's constructor, via
the field's ``validators`` argument, or defined on the Field class itself with
the ``default_validators`` attribute.