summaryrefslogtreecommitdiffstats
path: root/examples/simple/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/simple/src/main.rs')
-rw-r--r--examples/simple/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/simple/src/main.rs b/examples/simple/src/main.rs
index 8c738a8..fb66e03 100644
--- a/examples/simple/src/main.rs
+++ b/examples/simple/src/main.rs
@@ -7,7 +7,7 @@ fn main() {
settings
// Add in `./Settings.toml`
.merge(config::File::with_name("Settings")).unwrap()
- // Add in settings from the environment (with a prefix of APP_)
+ // Add in settings from the environment (with a prefix of APP)
// Eg.. `APP_DEBUG=1 ./target/app` would set the `debug` key
.merge(config::Environment::with_prefix("APP")).unwrap();