diff --git a/rest_framework/utils/serializer_helpers.py b/rest_framework/utils/serializer_helpers.py index cfaeb25e8..115f1e186 100644 --- a/rest_framework/utils/serializer_helpers.py +++ b/rest_framework/utils/serializer_helpers.py @@ -10,7 +10,7 @@ from rest_framework.compat import unicode_to_repr class ReturnDict(OrderedDict): """ - Return object from `serialier.data` for the `Serializer` class. + Return object from `serializer.data` for the `Serializer` class. Includes a backlink to the serializer instance for renderers to use if they need richer field information. """ @@ -33,7 +33,7 @@ class ReturnDict(OrderedDict): class ReturnList(list): """ - Return object from `serialier.data` for the `SerializerList` class. + Return object from `serializer.data` for the `SerializerList` class. Includes a backlink to the serializer instance for renderers to use if they need richer field information. """