diff --git a/docs/usage/dto/1-abstract-dto.rst b/docs/usage/dto/1-abstract-dto.rst index ffd2af3408..44aeb5fe31 100644 --- a/docs/usage/dto/1-abstract-dto.rst +++ b/docs/usage/dto/1-abstract-dto.rst @@ -353,13 +353,13 @@ Litestar offers paginated response wrapper types, and DTO Factory types can hand .. literalinclude:: /examples/data_transfer_objects/factory/paginated_return_data.py :language: python - :lines: 9-11,26-40 + :lines: 9-11,25-39 .. dropdown:: Full Code (click to expand) .. literalinclude:: /examples/data_transfer_objects/factory/paginated_return_data.py :language: python - :emphasize-lines: 9,26-40 + :emphasize-lines: 9,25-39 The DTO is defined and configured, in our example, we're excluding ``password`` and ``created_at`` fields from the final representation of our users.