From 8856a489a27e892fed6f0484437a7d6e76a4ad67 Mon Sep 17 00:00:00 2001 From: Akhil Kokani Date: Sun, 26 Sep 2021 04:28:59 +0530 Subject: [PATCH] Update serializers.md Removed unwanted word, "neither". --- docs/api-guide/serializers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/serializers.md b/docs/api-guide/serializers.md index cf8525748..dc122c6fa 100644 --- a/docs/api-guide/serializers.md +++ b/docs/api-guide/serializers.md @@ -116,7 +116,7 @@ Calling `.save()` will either create a new instance, or update an existing insta # .save() will update the existing `comment` instance. serializer = CommentSerializer(comment, data=data) -Both the `.create()` and `.update()` methods are optional. You can implement either neither, one, or both of them, depending on the use-case for your serializer class. +Both the `.create()` and `.update()` methods are optional. You can implement either, one, or both of them, depending on the use-case for your serializer class. #### Passing additional attributes to `.save()`