Skip to content

Commit dc323be

Browse files
committed
Wrap README at 100 lines
1 parent 5d0b53b commit dc323be

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,12 @@ $ RUSTFLAGS="-Zlocation-detail=none" cargo +nightly build --release
167167

168168
![Minimum Rust: Nightly](https://img.shields.io/badge/Minimum%20Rust%20Version-nightly-orange.svg)
169169

170-
With the [`-Zfmt-debug`](https://doc.rust-lang.org/nightly/unstable-book/compiler-flags/fmt-debug.html) flag you can turn `#[derive(Debug)]`
171-
and [`{:?}`](https://doc.rust-lang.org/stable/std/fmt/trait.Debug.html) formatting into no-ops.
172-
This will ruin output of `dbg!()`, `assert!()`, `unwrap()`, etc., and may break code that unwisely relies on
173-
the debug formatting, but it will remove derived `fmt` functions and their strings.
170+
With the
171+
[`-Zfmt-debug`](https://doc.rust-lang.org/nightly/unstable-book/compiler-flags/fmt-debug.html) flag
172+
you can turn `#[derive(Debug)]`and
173+
[`{:?}`](https://doc.rust-lang.org/stable/std/fmt/trait.Debug.html) formatting into no-ops. This
174+
will ruin output of `dbg!()`, `assert!()`, `unwrap()`, etc., and may break code that unwisely
175+
relies on the debug formatting, but it will remove derived `fmt` functions and their strings.
174176

175177
```bash
176178
$ RUSTFLAGS="-Zfmt-debug=none" cargo +nightly build --release

0 commit comments

Comments
 (0)