Skip to content

Commit

Permalink
remove comment adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
ChriFo committed Jan 29, 2018
1 parent 5ba6b7a commit 05f02eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/hierarchical-env/src/settings.rs
Expand Up @@ -53,7 +53,7 @@ impl Settings {
// This file shouldn't be checked in to git
s.merge(File::with_name("config/local").required(false))?;

// 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
s.merge(Environment::with_prefix("app"))?;

Expand Down
2 changes: 1 addition & 1 deletion examples/simple/src/main.rs
Expand Up @@ -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();

Expand Down

0 comments on commit 05f02eb

Please sign in to comment.