Fix 'ROCKET_CLI_COLORS' example in getting started guide: 'off' -> 'false'.

This commit is contained in:
Silas Sewell 2021-07-04 19:33:47 -04:00 committed by Jeb Rosen
parent 3b9fd56d4c
commit 31d06ee714
1 changed files with 2 additions and 2 deletions

View File

@ -103,5 +103,5 @@ Visit `http://localhost:8000` to see your first Rocket application in action!
! tip: Don't like colors or emoji?
You can disable colors and emoji by setting the `ROCKET_CLI_COLORS`
environment variable to `0` or `off` when running a Rocket binary:
`ROCKET_CLI_COLORS=off cargo run`.
environment variable to `0` or `false` when running a Rocket binary:
`ROCKET_CLI_COLORS=false cargo run`.