aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/serializers.md
diff options
context:
space:
mode:
authorTom Christie2013-03-25 20:28:17 +0000
committerTom Christie2013-03-25 20:28:17 +0000
commit8387cb5d1655e4d29cf8bca1919038091427e584 (patch)
treed7ad6b66a4edaf537d8d0353544dd3d3e7dcf396 /docs/api-guide/serializers.md
parent7eefcf7e53f2bc37733a601041f23d354c7729f5 (diff)
downloaddjango-rest-framework-8387cb5d1655e4d29cf8bca1919038091427e584.tar.bz2
Docs fix
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 aaff760e..dfa0cace 100644
--- a/docs/api-guide/serializers.md
+++ b/docs/api-guide/serializers.md
@@ -252,7 +252,7 @@ When performing a bulk update you may want to allow new items to be created, and
serializer.save() # `.save()` will be called on updated or newly created instances.
# `.delete()` will be called on any other items in the `queryset`.
-Passing `allow_delete=True` ensures that any update operations will completely overwrite the existing queryset, rather than simply updating existing objects.
+Passing `allow_add_remove=True` ensures that any update operations will completely overwrite the existing queryset, rather than simply updating existing objects.
#### How identity is determined when performing bulk updates