Fix codespell

This commit is contained in:
Bruno Alla 2025-10-14 08:29:20 +02:00
parent ae5dc5f070
commit 32f8d1bdde
3 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ The REST framework package only includes a single metadata class implementation,
## Creating schema endpoints ## Creating schema endpoints
If you have specific requirements for creating schema endpoints that are accessed with regular `GET` requests, you might consider re-using the metadata API for doing so. If you have specific requirements for creating schema endpoints that are accessed with regular `GET` requests, you might consider reusing the metadata API for doing so.
For example, the following additional route could be used on a viewset to provide a linkable schema endpoint. For example, the following additional route could be used on a viewset to provide a linkable schema endpoint.

View File

@ -92,7 +92,7 @@ For example, when forcibly authenticating using a token, you might do something
--- ---
**Note**: `force_authenticate` directly sets `request.user` to the in-memory `user` instance. If you are re-using the same `user` instance across multiple tests that update the saved `user` state, you may need to call [`refresh_from_db()`][refresh_from_db_docs] between tests. **Note**: `force_authenticate` directly sets `request.user` to the in-memory `user` instance. If you are reusing the same `user` instance across multiple tests that update the saved `user` state, you may need to call [`refresh_from_db()`][refresh_from_db_docs] between tests.
--- ---

View File

@ -5,7 +5,7 @@ source:
# Validators # Validators
> Validators can be useful for re-using validation logic between different types of fields. > Validators can be useful for reusing validation logic between different types of fields.
> >
> — [Django documentation][cite] > — [Django documentation][cite]