Skip to content

Commit dfb48dc

Browse files
committed
make more readable
1 parent eb07b87 commit dfb48dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/fuzzing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
For the purposes of this guide, *fuzzing* is any testing methodology that
66
involves compiling a wide variety of programs in an attempt to uncover bugs in rustc.
77
Fuzzing is often used to find internal compiler errors (ICEs).
8-
Fuzzing can be beneficial, because it can find bugs before users run into them and
9-
provide small, self-contained programs that make the bug easier to track down.
8+
Fuzzing can be beneficial, because it can find bugs before users run into them.
9+
It also provides small, self-contained programs that make the bug easier to track down.
1010
However, some common mistakes can reduce the helpfulness of fuzzing and end up
1111
making contributors' lives harder.
1212
To maximize your positive impact on the Rust
@@ -144,7 +144,7 @@ To enable debug assertions, add this to `bootstrap.toml` when compiling rustc:
144144
debug-assertions = true
145145
```
146146

147-
ICEs that require debug assertions to reproduce should be tagged
147+
ICEs that require debug assertions to reproduce should be tagged
148148
[`requires-debug-assertions`][requires-debug-assertions].
149149

150150
[requires-debug-assertions]: https://github.com/rust-lang/rust/labels/requires-debug-assertions

0 commit comments

Comments
 (0)