1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed two typos in docstrings.

This commit is contained in:
Baptiste Mispelon
2014-08-02 15:14:13 +02:00
parent e075d2e66b
commit de0a22be35
2 changed files with 2 additions and 2 deletions

View File

@@ -403,7 +403,7 @@ class BaseForm(object):
def clean(self):
"""
Hook for doing any extra form-wide cleaning after Field.clean() been
Hook for doing any extra form-wide cleaning after Field.clean() has been
called on every field. Any ValidationError raised by this method will
not be associated with a particular field; it will have a special-case
association with the field named '__all__'.