diff options
| author | juroe | 2014-02-04 11:56:41 +0100 |
|---|---|---|
| committer | juroe | 2014-02-04 11:56:41 +0100 |
| commit | b182b9e246fb0c74801bea46b0d82e7384451165 (patch) | |
| tree | 75c38d9a4080f6857e65a505e6029fff026729a7 | |
| parent | 9177c741286b9ea987175242f5019498868022b4 (diff) | |
| download | django-rest-framework-b182b9e246fb0c74801bea46b0d82e7384451165.tar.bz2 | |
Fixes typo (Implicit instead of Implict).
| -rw-r--r-- | rest_framework/serializers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rest_framework/serializers.py b/rest_framework/serializers.py index 536b040b..38b5089a 100644 --- a/rest_framework/serializers.py +++ b/rest_framework/serializers.py @@ -501,7 +501,7 @@ class BaseSerializer(WritableField): else: many = hasattr(data, '__iter__') and not isinstance(data, (Page, dict, six.text_type)) if many: - warnings.warn('Implict list/queryset serialization is deprecated. ' + warnings.warn('Implicit list/queryset serialization is deprecated. ' 'Use the `many=True` flag when instantiating the serializer.', DeprecationWarning, stacklevel=3) @@ -563,7 +563,7 @@ class BaseSerializer(WritableField): else: many = hasattr(obj, '__iter__') and not isinstance(obj, (Page, dict)) if many: - warnings.warn('Implict list/queryset serialization is deprecated. ' + warnings.warn('Implicit list/queryset serialization is deprecated. ' 'Use the `many=True` flag when instantiating the serializer.', DeprecationWarning, stacklevel=2) |
