aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/serializers.md
diff options
context:
space:
mode:
authorBrett Koonce2015-04-07 22:06:25 -0700
committerBrett Koonce2015-04-07 22:06:25 -0700
commitd8a19f79abd9e750c9d2b11565a59fc931acda1e (patch)
tree6d17e8ca24d624e07bad517fc2af16cec6570558 /docs/api-guide/serializers.md
parent80d8a1ff8c54d30668164e57de43560008673391 (diff)
downloaddjango-rest-framework-d8a19f79abd9e750c9d2b11565a59fc931acda1e.tar.bz2
more sp fixes
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 d9ded52f..2adea513 100644
--- a/docs/api-guide/serializers.md
+++ b/docs/api-guide/serializers.md
@@ -812,7 +812,7 @@ There are four methods that can be overridden, depending on what functionality y
* `.to_representation()` - Override this to support serialization, for read operations.
* `.to_internal_value()` - Override this to support deserialization, for write operations.
-* `.create()` and `.update()` - Overide either or both of these to support saving instances.
+* `.create()` and `.update()` - Override either or both of these to support saving instances.
Because this class provides the same interface as the `Serializer` class, you can use it with the existing generic class based views exactly as you would for a regular `Serializer` or `ModelSerializer`.