Skip to content

Commit 764dabd

Browse files
authored
Update writeable nested serializer doc (#7198)
1 parent 92a4a5d commit 764dabd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/api-guide/serializers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ Here's an example for an `.update()` method on our previous `UserSerializer` cla
333333
def update(self, instance, validated_data):
334334
profile_data = validated_data.pop('profile')
335335
# Unless the application properly enforces that this field is
336-
# always set, the follow could raise a `DoesNotExist`, which
336+
# always set, the following could raise a `DoesNotExist`, which
337337
# would need to be handled.
338338
profile = instance.profile
339339

0 commit comments

Comments
 (0)