summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorLuke Plant <L.Plant.98@cantab.net>2010-09-07 20:19:41 +0000
committerLuke Plant <L.Plant.98@cantab.net>2010-09-07 20:19:41 +0000
commitc8bcd5e5478205a5500c694c4ceef0df79627a00 (patch)
treea84fe753fc50634a63c2852736fa44a824139291 /docs/ref
parent027aaca37f25d866a87a6426fa197813f75051cf (diff)
Fixed #14205 - Tiny grammar fix in form validation documentation
Thanks to zendak for report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13687 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
-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.