aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorXavier Ordoquy2014-11-03 21:07:27 +0100
committerXavier Ordoquy2014-11-03 21:07:27 +0100
commit5ee472718a065497eafe8c9e7e6108e828040aee (patch)
tree23ce23d6a10e4c98a7bfb92d0f2ce4691caa9279 /docs
parent1925d465ae0c3558d6919e56ee753602ac61119f (diff)
parent3375fecc8bf8f8ba781d952e6dd5986b947a7ec2 (diff)
downloaddjango-rest-framework-5ee472718a065497eafe8c9e7e6108e828040aee.tar.bz2
Merge pull request #2015 from tdavis/patch-1
Fix typo
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/3.0-announcement.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/3.0-announcement.md b/docs/topics/3.0-announcement.md
index 78abc5ee..e8428bc2 100644
--- a/docs/topics/3.0-announcement.md
+++ b/docs/topics/3.0-announcement.md
@@ -369,7 +369,7 @@ This class implements the same basic API as the `Serializer` class:
* `.errors` - Returns an errors during validation.
* `.save()` - Persists the validated data into an object instance.
-There are four mathods that can be overriding, depending on what functionality you want the serializer class to support:
+There are four methods that can be overridden, depending on what functionality you want the serializer class to support:
* `.to_representation()` - Override this to support serialization, for read operations.
* `.to_internal_value()` - Override this to support deserialization, for write operations.