From 31d06ee714c7cdab1911a8cb8fd5f9e148cc201f Mon Sep 17 00:00:00 2001 From: Silas Sewell Date: Sun, 4 Jul 2021 19:33:47 -0400 Subject: [PATCH] Fix 'ROCKET_CLI_COLORS' example in getting started guide: 'off' -> 'false'. --- site/guide/2-getting-started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/guide/2-getting-started.md b/site/guide/2-getting-started.md index af55733e..b9916e1d 100644 --- a/site/guide/2-getting-started.md +++ b/site/guide/2-getting-started.md @@ -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`.