]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:pencil2: Fix typo in HTTP Basic auth tutorial (#514)
authorprostomarkeloff <klassromanov@gmail.com>
Fri, 4 Oct 2019 00:01:41 +0000 (03:01 +0300)
committerSebastián Ramírez <tiangolo@gmail.com>
Fri, 4 Oct 2019 00:01:41 +0000 (19:01 -0500)
docs/tutorial/security/http-basic-auth.md

index d6ee6bc349afdf3beeeed87dd78c9c5729548c28..a5e45ed91d54fc6d8826923d14d7b3666bd2d00c 100644 (file)
@@ -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.