summaryrefslogtreecommitdiff
path: root/django/db/models/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/db/models/base.py')
-rw-r--r--django/db/models/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/base.py b/django/db/models/base.py
index a2eee60c61..005e089598 100644
--- a/django/db/models/base.py
+++ b/django/db/models/base.py
@@ -911,7 +911,7 @@ class Model(six.with_metaclass(ModelBase)):
def full_clean(self, exclude=None):
"""
Calls clean_fields, clean, and validate_unique, on the model,
- and raises a ``ValidationError`` for any errors that occured.
+ and raises a ``ValidationError`` for any errors that occurred.
"""
errors = {}
if exclude is None: