Commit 551fe920 by Tom Christie

Merge pull request #1084 from thetylerhayes/master

Tiny typo fix
parents db3802c6 c4cb26f7
...@@ -250,7 +250,7 @@ This allows you to write views that update or create multiple items when a `PUT` ...@@ -250,7 +250,7 @@ This allows you to write views that update or create multiple items when a `PUT`
serializer = BookSerializer(queryset, data=data, many=True) serializer = BookSerializer(queryset, data=data, many=True)
serializer.is_valid() serializer.is_valid()
# True # True
serialize.save() # `.save()` will be called on each updated or newly created instance. serializer.save() # `.save()` will be called on each updated or newly created instance.
By default bulk updates will be limited to updating instances that already exist in the provided queryset. By default bulk updates will be limited to updating instances that already exist in the provided queryset.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment