docs: fix typos (#2387)

This commit is contained in:
Alex Chiu
2022-10-10 08:20:04 +01:00
committed by GitHub
parent 63d514494b
commit 0276e710e4

View File

@@ -154,10 +154,10 @@ Where `jwt_secret` is the secret used to create the tokens. The more secure it i
It is recommended to set the JWT Secret as an environment variable:
```bash
JWT_SECRET=<YOUR_JWT_SECRETL>
JWT_SECRET=<YOUR_JWT_SECRET>
```
Where `<YOUR_JWT_SECRETL>` is the JWT secret you want to use.
Where `<YOUR_JWT_SECRET>` is the JWT secret you want to use.
:::caution
@@ -183,10 +183,10 @@ Where `cookie_secret` is the secret used to create the tokens. The more secure i
It is recommended to set the Cookie secret as an environment variable:
```bash
COOKIE_SECRET=<YOUR_COOKIE_SECRETL>
COOKIE_SECRET=<YOUR_COOKIE_SECRET>
```
Where `<YOUR_COOKIE_SECRETL>` is the Cookie secret you want to use.
Where `<YOUR_COOKIE_SECRET>` is the Cookie secret you want to use.
:::caution