summaryrefslogtreecommitdiff
path: root/django/core/serializers/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/core/serializers/base.py')
-rw-r--r--django/core/serializers/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/serializers/base.py b/django/core/serializers/base.py
index 0d7946dc3f..624fc312bd 100644
--- a/django/core/serializers/base.py
+++ b/django/core/serializers/base.py
@@ -188,7 +188,7 @@ class Deserializer:
return self
def __next__(self):
- """Iteration iterface -- return the next item in the stream"""
+ """Iteration interface -- return the next item in the stream"""
raise NotImplementedError('subclasses of Deserializer must provide a __next__() method')