From ce17c66aad20a255328d35b21a5464ded1bd8907 Mon Sep 17 00:00:00 2001 From: Pravin Kamble Date: Mon, 24 Nov 2025 14:19:54 +0530 Subject: [PATCH] =?UTF-8?q?Replace=20=E2=80=9Clet=E2=80=99s=E2=80=9D=20wit?= =?UTF-8?q?h=20=E2=80=9Clets=E2=80=9D=20where=20grammatically=20correct?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- codespell-ignore-words.txt | 3 ++- docs/api-guide/authentication.md | 2 +- docs/api-guide/serializers.md | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/codespell-ignore-words.txt b/codespell-ignore-words.txt index 7670fb785b..07c9fdb9ba 100644 --- a/codespell-ignore-words.txt +++ b/codespell-ignore-words.txt @@ -3,4 +3,5 @@ assertIn IAM endcode deque -thead \ No newline at end of file +thead +lets \ No newline at end of file diff --git a/docs/api-guide/authentication.md b/docs/api-guide/authentication.md index f414813106..2f4d42959f 100644 --- a/docs/api-guide/authentication.md +++ b/docs/api-guide/authentication.md @@ -416,7 +416,7 @@ JSON Web Token is a fairly new standard which can be used for token-based authen ## Hawk HTTP Authentication -The [HawkREST][hawkrest] library builds on the [Mohawk][mohawk] library to let you work with [Hawk][hawk] signed requests and responses in your API. [Hawk][hawk] let's two parties securely communicate with each other using messages signed by a shared key. It is based on [HTTP MAC access authentication][mac] (which was based on parts of [OAuth 1.0][oauth-1.0a]). +The [HawkREST][hawkrest] library builds on the [Mohawk][mohawk] library to let you work with [Hawk][hawk] signed requests and responses in your API. [Hawk][hawk] lets two parties securely communicate with each other using messages signed by a shared key. It is based on [HTTP MAC access authentication][mac] (which was based on parts of [OAuth 1.0][oauth-1.0a]). ## HTTP Signature Authentication diff --git a/docs/api-guide/serializers.md b/docs/api-guide/serializers.md index e732573816..8d4da4ee41 100644 --- a/docs/api-guide/serializers.md +++ b/docs/api-guide/serializers.md @@ -430,7 +430,7 @@ The context dictionary can be used within any serializer field logic, such as a Often you'll want serializer classes that map closely to Django model definitions. -The `ModelSerializer` class provides a shortcut that let's you automatically create a `Serializer` class with fields that correspond to the Model fields. +The `ModelSerializer` class provides a shortcut that lets you automatically create a `Serializer` class with fields that correspond to the Model fields. **The `ModelSerializer` class is the same as a regular `Serializer` class, except that**: