about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorSantiago Pastorino <spastorino@gmail.com>2020-09-29 15:18:00 +0000
committerGitHub <noreply@github.com>2020-09-29 17:18:00 +0200
commitc714aed30a8efc567a315df373f64b901778f47a (patch)
tree65092c9e34c2af5c75fbde79f6c292db1a2d0983 /src/doc/rustc-dev-guide
parent2e9a2f3c754da557728f9768dbb8f9c8c85a36ef (diff)
downloadrust-c714aed30a8efc567a315df373f64b901778f47a.tar.gz
rust-c714aed30a8efc567a315df373f64b901778f47a.zip
--verbose is useful when not compiling and when compiling (#901)
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/cli.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/cli.md b/src/doc/rustc-dev-guide/src/cli.md
index f47c89e1f9b..408ae207004 100644
--- a/src/doc/rustc-dev-guide/src/cli.md
+++ b/src/doc/rustc-dev-guide/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.