diff --git a/docs/api-guide/serializers.md b/docs/api-guide/serializers.md index 515e7cad8..0e235c88d 100644 --- a/docs/api-guide/serializers.md +++ b/docs/api-guide/serializers.md @@ -822,9 +822,7 @@ Here's an example of how you might choose to implement multiple updates: # We need to identify elements in the list using their primary key, # so use a writable field here, rather than the default which would be read-only. id = serializers.IntegerField() - ... - id = serializers.IntegerField(required=False) class Meta: list_serializer_class = BookListSerializer