From 6f799988f89114e14861b081d732e9b1ec437f37 Mon Sep 17 00:00:00 2001 From: Santiago Pastorino Date: Tue, 29 Sep 2020 11:25:02 -0300 Subject: [PATCH] --verbose is useful when not compiling and when compiling --- src/cli.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli.md b/src/cli.md index f47c89e1f..408ae2070 100644 --- a/src/cli.md +++ b/src/cli.md @@ -21,8 +21,8 @@ adding a new command-line argument. if it is too ambiguous what multiple flags would mean. - Always give options a long descriptive name, if only for more understandable compiler scripts. -- The `--verbose` flag is for adding verbose information to `rustc` output - when not compiling a program. For example, using it with the `--version` +- The `--verbose` flag is for adding verbose information to `rustc` + output. For example, using it with the `--version` flag gives information about the hashes of the compiler code. - Experimental flags and options must be guarded behind the `-Z unstable-options` flag.