Merge pull request #4130 from BenBrostoff/fix_doc_string_typos

Fix typos in ReturnDict and ReturnList docstrings
This commit is contained in:
José Padilla 2016-05-16 23:18:52 -04:00
commit b58e28b99c

View File

@ -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.
"""