From 5be0d53c1fa1db147c89ca9ae3c1709c3f6e8194 Mon Sep 17 00:00:00 2001 From: Prayash Mohapatra Date: Thu, 20 Feb 2020 09:22:12 +0530 Subject: [PATCH] Update writeable nested serializer doc --- 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 4679b1ed1..96a0e0222 100644 --- a/docs/api-guide/serializers.md +++ b/docs/api-guide/serializers.md @@ -333,7 +333,7 @@ Here's an example for an `.update()` method on our previous `UserSerializer` cla def update(self, instance, validated_data): profile_data = validated_data.pop('profile') # Unless the application properly enforces that this field is - # always set, the follow could raise a `DoesNotExist`, which + # always set, the following could raise a `DoesNotExist`, which # would need to be handled. profile = instance.profile