diff options
| author | luz.paz <luzpaz@users.noreply.github.com> | 2018-08-01 12:55:53 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-08-01 16:09:22 -0400 |
| commit | 97e637a87fb45c4de970cca6cb783d93473c9d15 (patch) | |
| tree | f2bc4b9a102aa1277005ee469b6f7e390c925c8d /django/core/serializers/base.py | |
| parent | 4263cd0e095c55a1011e5bf0746d651126a8da5f (diff) | |
Fixed typos in comments and docs.
Diffstat (limited to 'django/core/serializers/base.py')
| -rw-r--r-- | django/core/serializers/base.py | 2 |
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') |
