From f7a024cee3a161a37710c7b77e7d650f981d142d Mon Sep 17 00:00:00 2001 From: Jorge Date: Wed, 30 Mar 2022 10:58:00 -0400 Subject: [PATCH] Corrected typo in advanced.md (#2155) --- docs/advanced.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced.md b/docs/advanced.md index 90478148..9e688ad6 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -763,7 +763,7 @@ class MyCustomAuth(httpx.Auth): yield request ``` -If the auth flow requires more that one request, you can issue multiple yields, and obtain the response in each case... +If the auth flow requires more than one request, you can issue multiple yields, and obtain the response in each case... ```python class MyCustomAuth(httpx.Auth):