diff options
| author | Pascal Borreli | 2013-05-28 15:09:23 +0100 | 
|---|---|---|
| committer | Pascal Borreli | 2013-05-28 15:09:23 +0100 | 
| commit | 8f35ac4f93c608eaced3f48a46e8922104e09182 (patch) | |
| tree | 55b394b57fc7b0e40283d89dc23dd0b41dfc074d /rest_framework/serializers.py | |
| parent | 7123f0b1e6b29778c41476341bd2370f60c279fa (diff) | |
| download | django-rest-framework-8f35ac4f93c608eaced3f48a46e8922104e09182.tar.bz2 | |
Fixed typos
Diffstat (limited to 'rest_framework/serializers.py')
| -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 5be07fb7..3e5c366e 100644 --- a/rest_framework/serializers.py +++ b/rest_framework/serializers.py @@ -25,7 +25,7 @@ from rest_framework.compat import get_concrete_model, six  #  #     example_field = serializers.CharField(...)  # -# This helps keep the seperation between model fields, form fields, and +# This helps keep the separation between model fields, form fields, and  # serializer fields more explicit.  from rest_framework.relations import * @@ -58,7 +58,7 @@ class DictWithMetadata(dict):      def __getstate__(self):          """          Used by pickle (e.g., caching). -        Overriden to remove the metadata from the dict, since it shouldn't be +        Overridden to remove the metadata from the dict, since it shouldn't be          pickled and may in some instances be unpickleable.          """          return dict(self) | 
