aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodolfo Carvalho2014-03-05 17:01:54 +0100
committerRodolfo Carvalho2014-03-05 17:01:54 +0100
commit94fe03779b8e193a4cfd67be28ab9276e36f4179 (patch)
treea66d149ad112883ee77887506444b4e8e52ba93d
parent45ae5081f7d45438306a23a56f05a56e7681fa1e (diff)
downloaddjango-rest-framework-94fe03779b8e193a4cfd67be28ab9276e36f4179.tar.bz2
Fix typo
-rw-r--r--rest_framework/serializers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/serializers.py b/rest_framework/serializers.py
index 10256d47..c95b0593 100644
--- a/rest_framework/serializers.py
+++ b/rest_framework/serializers.py
@@ -758,7 +758,7 @@ class ModelSerializer(Serializer):
ret[accessor_name] = field
- # Add the `read_only` flag to any fields that have bee specified
+ # Add the `read_only` flag to any fields that have been specified
# in the `read_only_fields` option
for field_name in self.opts.read_only_fields:
assert field_name not in self.base_fields.keys(), (