From 2fa5606c485691ec09bfd4eba9513711c7dead85 Mon Sep 17 00:00:00 2001 From: Imann Brar <122045366+ImannBrar@users.noreply.github.com> Date: Wed, 24 Jun 2026 18:51:17 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix=20grammar=20typo=20in?= =?UTF-8?q?=20HTTP=20Basic=20Auth=20docs:=20"a=20type=20of=20attacks"=20->?= =?UTF-8?q?=20"a=20type=20of=20attack"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/en/docs/advanced/security/http-basic-auth.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/docs/advanced/security/http-basic-auth.md b/docs/en/docs/advanced/security/http-basic-auth.md index 01693e0a0..1405ef315 100644 --- a/docs/en/docs/advanced/security/http-basic-auth.md +++ b/docs/en/docs/advanced/security/http-basic-auth.md @@ -50,7 +50,7 @@ if not (credentials.username == "stanleyjobson") or not (credentials.password == ... ``` -But by using the `secrets.compare_digest()` it will be secure against a type of attacks called "timing attacks". +But by using the `secrets.compare_digest()` it will be secure against a type of attack called "timing attacks". ### Timing Attacks { #timing-attacks }