update config documentation (#2178)

* update config documentation

* update config syntax

* update config syntax

* Update alias.md

Co-authored-by: Jonathan Turner <jonathandturner@users.noreply.github.com>
This commit is contained in:
morrme
2020-07-22 16:42:04 -05:00
committed by GitHub
parent 6b4634b293
commit 5d17b72852
5 changed files with 18 additions and 18 deletions

View File

@ -41,7 +41,7 @@ impl WholeStreamCommand for SubCommand {
fn examples(&self) -> Vec<Example> {
vec![Example {
description: "Remove the startup commands",
example: "config --remove startup",
example: "config remove startup",
result: None,
}]
}

View File

@ -60,7 +60,7 @@ pub async fn set_into(
// existing config
let mut result = crate::data::config::read(name_span, &None)?;
// In the original code, this is set to `Some` if the `--load flag is set`
// In the original code, this is set to `Some` if the `load flag is set`
let configuration = None;
let rows: Vec<Value> = input.collect().await;