fix: node cli docs (#14718)

This commit is contained in:
Osoro Bironga
2023-08-14 18:33:27 +03:00
committed by GitHub
parent ffa6d4b20e
commit 7d3abae88e
4 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -37,14 +37,14 @@ mod cli {
rerun_if_git_head_changed();
}
/// Build shell completion scripts for all known shells
/// Build shell completion scripts for all known shells.
fn build_shell_completion() {
for shell in Shell::value_variants() {
build_completion(shell);
}
}
/// Build the shell auto-completion for a given Shell
/// Build the shell auto-completion for a given Shell.
fn build_completion(shell: &Shell) {
let outdir = match env::var_os("OUT_DIR") {
None => return,