From f97b02dda651b8acbcb5dc07f7d2158b664c3760 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Tue, 18 Apr 2017 00:40:33 -0700 Subject: [PATCH] Note the extras in the config example. --- examples/config/Rocket.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/config/Rocket.toml b/examples/config/Rocket.toml index 64ebdfc2..4002abf6 100644 --- a/examples/config/Rocket.toml +++ b/examples/config/Rocket.toml @@ -11,8 +11,8 @@ address = "localhost" port = 8000 workers = 1 log = "normal" -hi = "Hello!" -is_extra = true +hi = "Hello!" # this is an unused extra; maybe application specific? +is_extra = true # this is an unused extra; maybe application specific? [staging] address = "0.0.0.0"