1
Fork 0

Fix a typo

This commit is contained in:
Seiichi Uchida 2017-10-30 23:34:44 +09:00
parent c1e897907a
commit fe39c0cd8c

View file

@ -68,7 +68,7 @@ impl CliOptions {
let mut options = CliOptions::default();
options.skip_children = matches.opt_present("skip-children");
options.verbose = matches.opt_present("verbose");
let unstable_features = matches.opt_present("unstable_features");
let unstable_features = matches.opt_present("unstable-features");
let rust_nightly = option_env!("CFG_RELEASE_CHANNEL")
.map(|c| c == "nightly")
.unwrap_or(false);