From 1f53fef70a7cbb20267e0fb1166c29f90c84cba1 Mon Sep 17 00:00:00 2001 From: adg-mh <40580891+adg-mh@users.noreply.github.com> Date: Fri, 27 Mar 2020 11:18:23 -0500 Subject: [PATCH] :pencil2: Update doc string with correct class name (#1126) --- fastapi/security/oauth2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastapi/security/oauth2.py b/fastapi/security/oauth2.py index 781293bb9..c9edbae42 100644 --- a/fastapi/security/oauth2.py +++ b/fastapi/security/oauth2.py @@ -81,7 +81,7 @@ class OAuth2PasswordRequestFormStrict(OAuth2PasswordRequestForm): grant_type: the OAuth2 spec says it is required and MUST be the fixed string "password". This dependency is strict about it. If you want to be permissive, use instead the - OAuth2PasswordRequestFormStrict dependency class. + OAuth2PasswordRequestForm dependency class. username: username string. The OAuth2 spec requires the exact field name "username". password: password string. The OAuth2 spec requires the exact field name "password". scope: Optional string. Several scopes (each one a string) separated by spaces. E.g.