From 764dabd29e127a0b1a07794f8268a1b1535d9507 Mon Sep 17 00:00:00 2001 From: Prayash Mohapatra Date: Thu, 20 Feb 2020 10:55:13 +0000 Subject: [PATCH] Update writeable nested serializer doc (#7198) --- 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