aboutsummaryrefslogtreecommitdiffstats
path: root/docs/topics/writable-nested-serializers.md
diff options
context:
space:
mode:
authorTom Christie2014-11-03 14:36:06 +0000
committerTom Christie2014-11-03 14:36:06 +0000
commitb106ebd2c0a19107f12d5b87cfbe0083aaaa60b9 (patch)
tree736da30fadc813385cc2359caeb30a8ef5d422cb /docs/topics/writable-nested-serializers.md
parent650a91ac24cbd3e5b4ad5d7d7c6706fdf6160a78 (diff)
parent8861a7dfc757a88335048aa7bbccfc8a77850c48 (diff)
downloaddjango-rest-framework-b106ebd2c0a19107f12d5b87cfbe0083aaaa60b9.tar.bz2
Merge pull request #1800 from tomchristie/version-3.0
Version 3.0
Diffstat (limited to 'docs/topics/writable-nested-serializers.md')
-rw-r--r--docs/topics/writable-nested-serializers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/writable-nested-serializers.md b/docs/topics/writable-nested-serializers.md
index 66ea7815..abc6a82f 100644
--- a/docs/topics/writable-nested-serializers.md
+++ b/docs/topics/writable-nested-serializers.md
@@ -6,7 +6,7 @@
Although flat data structures serve to properly delineate between the individual entities in your service, there are cases where it may be more appropriate or convenient to use nested data structures.
-Nested data structures are easy enough to work with if they're read-only - simply nest your serializer classes and you're good to go. However, there are a few more subtleties to using writable nested serializers, due to the dependancies between the various model instances, and the need to save or delete multiple instances in a single action.
+Nested data structures are easy enough to work with if they're read-only - simply nest your serializer classes and you're good to go. However, there are a few more subtleties to using writable nested serializers, due to the dependencies between the various model instances, and the need to save or delete multiple instances in a single action.
## One-to-many data structures