From 8741407b045ca7867b993b2237544c19180b3e36 Mon Sep 17 00:00:00 2001 From: Sofie Van Landeghem Date: Mon, 2 Sep 2024 17:00:05 +0200 Subject: [PATCH] Fix small typo --- fastapi/security/http.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fastapi/security/http.py b/fastapi/security/http.py index 91cf8120a..c9c978fbe 100644 --- a/fastapi/security/http.py +++ b/fastapi/security/http.py @@ -185,7 +185,7 @@ class HTTPBasic(HTTPBase): The text to be returned to the client when `auto_error` raises an HTTP exception. - It useful when you have multiple errors defined: set + It's useful when you have multiple errors defined: set different detail text to easily differentiate which error was raised. """ ), @@ -313,7 +313,7 @@ class HTTPBearer(HTTPBase): The text to be returned to the client when `auto_error` raises an HTTP exception. - It useful when you have multiple errors defined: set + It's useful when you have multiple errors defined: set different detail text to easily differentiate which error was raised. """ ), @@ -429,7 +429,7 @@ class HTTPDigest(HTTPBase): The text to be returned to the client when `auto_error` raises an HTTP exception. - It useful when you have multiple errors defined: set + It's useful when you have multiple errors defined: set different detail text to easily differentiate which error was raised. """ ),