aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/serializers.py
diff options
context:
space:
mode:
authorMarko Tibold2012-10-30 00:30:52 +0100
committerMarko Tibold2012-10-30 00:30:52 +0100
commit4d90bb4af4e565f156ca5d84eb205cbb63810b46 (patch)
treee989727bd9bdd06877b48e32491a9d068cd9b4c3 /rest_framework/serializers.py
parentb6c90c0d684cd036a2ce874fd9ace7a8a2bfda2f (diff)
downloaddjango-rest-framework-4d90bb4af4e565f156ca5d84eb205cbb63810b46.tar.bz2
Fix some typos.
Diffstat (limited to 'rest_framework/serializers.py')
-rw-r--r--rest_framework/serializers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/serializers.py b/rest_framework/serializers.py
index ce04b3e2..1cfcf103 100644
--- a/rest_framework/serializers.py
+++ b/rest_framework/serializers.py
@@ -279,7 +279,7 @@ class BaseSerializer(Field):
def errors(self):
"""
Run deserialization and return error data,
- setting self.object if no errors occured.
+ setting self.object if no errors occurred.
"""
if self._errors is None:
obj = self.from_native(self.init_data)