From: prostomarkeloff Date: Fri, 4 Oct 2019 00:01:41 +0000 (+0300) Subject: :pencil2: Fix typo in HTTP Basic auth tutorial (#514) X-Git-Tag: 0.40.0~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0761f11d1a64eaecf5ee9c5f6f5105dd1a38b6ea;p=thirdparty%2Ffastapi%2Ffastapi.git :pencil2: Fix typo in HTTP Basic auth tutorial (#514) --- diff --git a/docs/tutorial/security/http-basic-auth.md b/docs/tutorial/security/http-basic-auth.md index d6ee6bc349..a5e45ed91d 100644 --- a/docs/tutorial/security/http-basic-auth.md +++ b/docs/tutorial/security/http-basic-auth.md @@ -12,8 +12,8 @@ Then, when you type that username and password, the browser sends them in the he ## Simple HTTP Basic Auth -* Import `HTTPBAsic` and `HTTPBasicCredentials`. -* Create a "`security` scheme" using `HTTPBAsic`. +* Import `HTTPBasic` and `HTTPBasicCredentials`. +* Create a "`security` scheme" using `HTTPBasic`. * Use that `security` with a dependency in your *path operation*. * It returns an object of type `HTTPBasicCredentials`: * It contains the `username` and `password` sent.