]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏ Fix small typo in `docs/en/docs/tutorial/security/first-steps.md` (#4515)
authorKiko Ilievski <64956873+KikoIlievski@users.noreply.github.com>
Tue, 10 May 2022 03:35:21 +0000 (15:35 +1200)
committerGitHub <noreply@github.com>
Tue, 10 May 2022 03:35:21 +0000 (03:35 +0000)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
docs/en/docs/tutorial/security/first-steps.md

index 360d85ae4d92360ddb3f4f8a23e184aed296d908..45ffaab90c10b640a0b495e211494dff96c4ebfa 100644 (file)
@@ -121,7 +121,7 @@ When we create an instance of the `OAuth2PasswordBearer` class we pass in the `t
 ```
 
 !!! tip
-    here `tokenUrl="token"` refers to a relative URL `token` that we haven't created yet. As it's a relative URL, it's equivalent to `./token`.
+    Here `tokenUrl="token"` refers to a relative URL `token` that we haven't created yet. As it's a relative URL, it's equivalent to `./token`.
 
     Because we are using a relative URL, if your API was located at `https://example.com/`, then it would refer to `https://example.com/token`. But if your API was located at `https://example.com/api/v1/`, then it would refer to `https://example.com/api/v1/token`.