diff options
author | Valentin Anger <syrupthinker@gryphno.de> | 2020-08-11 11:06:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-11 11:06:55 +0200 |
commit | d7077b9073dec6fb1f4b07d5575ef416997c19a9 (patch) | |
tree | 4372834a767b0c3348a6c4c49a7e0efeac3f0be6 /cli/main.rs | |
parent | f32d28019d1ef56454137d49046cf1587c2245a4 (diff) |
doc: Remove detailed / summary distinction (#6818)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/main.rs b/cli/main.rs index 799d47e32..5400d3f65 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -551,9 +551,9 @@ async fn doc_command( eprintln!("Node {} was not found!", filter); std::process::exit(1); } - format!("{}", doc::DocPrinter::new(&nodes, true, private)) + format!("{}", doc::DocPrinter::new(&nodes, private)) } else { - format!("{}", doc::DocPrinter::new(&doc_nodes, false, private)) + format!("{}", doc::DocPrinter::new(&doc_nodes, private)) }; write_to_stdout_ignore_sigpipe(details.as_bytes()).map_err(ErrBox::from) |