aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/serializers.md
diff options
context:
space:
mode:
authorStephan Groß2012-11-06 21:18:49 +0100
committerStephan Groß2012-11-06 21:18:49 +0100
commite02a8470e8d32348a9bd7714e1f27cf6e55b5cda (patch)
tree7e8d8db8b941c73a27445d9f9a1c6df996c255b6 /docs/api-guide/serializers.md
parent4136b7e44b85c7c887ab0c4379288512aa67fc64 (diff)
downloaddjango-rest-framework-e02a8470e8d32348a9bd7714e1f27cf6e55b5cda.tar.bz2
fixed typo
Diffstat (limited to 'docs/api-guide/serializers.md')
-rw-r--r--docs/api-guide/serializers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/serializers.md b/docs/api-guide/serializers.md
index ee7f72dd..0cdae1ce 100644
--- a/docs/api-guide/serializers.md
+++ b/docs/api-guide/serializers.md
@@ -190,7 +190,7 @@ As an example, let's create a field that can be used represent the class name of
# ModelSerializers
Often you'll want serializer classes that map closely to model definitions.
-The `ModelSerializer` class lets you automatically create a Serializer class with fields that corrospond to the Model fields.
+The `ModelSerializer` class lets you automatically create a Serializer class with fields that correspond to the Model fields.
class AccountSerializer(serializers.ModelSerializer):
class Meta: