aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJosé Padilla2015-04-03 17:30:52 -0400
committerJosé Padilla2015-04-03 17:30:52 -0400
commit6333e4818860901505b36640a288f95e55e89216 (patch)
treecbd97bd2ed941adf11bc56b328bf64473e741028 /docs
parent73e46d9a7fa5c3adba5236cfac79649723ebc60f (diff)
parent49c04d721884945927ff6b0f6e850b2b2caeec3a (diff)
downloaddjango-rest-framework-6333e4818860901505b36640a288f95e55e89216.tar.bz2
Merge pull request #2753 from johnjohndoe/patch-1
Fix typo.
Diffstat (limited to 'docs')
-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 aad2236f..d9ded52f 100644
--- a/docs/api-guide/serializers.md
+++ b/docs/api-guide/serializers.md
@@ -344,7 +344,7 @@ Here's an example for an `update()` method on our previous `UserSerializer` clas
return instance
-Because the behavior of nested creates and updates can be ambiguous, and may require complex dependancies between related models, REST framework 3 requires you to always write these methods explicitly. The default `ModelSerializer` `.create()` and `.update()` methods do not include support for writable nested representations.
+Because the behavior of nested creates and updates can be ambiguous, and may require complex dependencies between related models, REST framework 3 requires you to always write these methods explicitly. The default `ModelSerializer` `.create()` and `.update()` methods do not include support for writable nested representations.
It is possible that a third party package, providing automatic support some kinds of automatic writable nested representations may be released alongside the 3.1 release.