Skip to content

Commit d59f755

Browse files
ohno418fmease
authored andcommitted
Rename -Z verbose to -Z verbose-internals
The `-Z verbose` option has been renamed to `-Z verbose-internals` in commit b5d8361 [1] (PR rust-lang#119129 [2]). This commit updates the remaining `-Z verbose` to `-Z verbose-internals`. [1]: rust-lang@b5d8361 [2]: rust-lang#119129
1 parent 5df3e83 commit d59f755

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/doc/rustc-dev-guide/src/compiler-debugging.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ The compiler has a bunch of `-Z` flags. These are unstable flags that are only
5252
enabled on nightly. Many of them are useful for debugging. To get a full listing
5353
of `-Z` flags, use `-Z help`.
5454

55-
One useful flag is `-Z verbose`, which generally enables printing more info that
56-
could be useful for debugging.
55+
One useful flag is `-Z verbose-internals`, which generally enables printing more
56+
info that could be useful for debugging.
5757

5858
## Getting a backtrace
5959
[getting-a-backtrace]: #getting-a-backtrace

src/doc/rustc-dev-guide/src/tests/compiletest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ revision. To do this, add `[revision-name]` after the `//` comment, like so:
597597

598598
```rust,ignore
599599
// A flag to pass in only for cfg `foo`:
600-
//@[foo]compile-flags: -Z verbose
600+
//@[foo]compile-flags: -Z verbose-internals
601601
602602
#[cfg(foo)]
603603
fn test_foo() {

0 commit comments

Comments
 (0)