summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorLangston Barrett <langston.barrett@gmail.com>2023-03-16 17:51:11 -0400
committerMichael Goulet <michael@errs.io>2023-03-16 18:40:40 -0700
commitb146ed6765fa77a817be79b05d7245cc057b7f16 (patch)
treeae7c506cc02ed5845924e5e8a747aaf37f8893bb /src/doc/rustc-dev-guide
parentc9513359da82ea9aed66f40e58eda99d618ce594 (diff)
downloadrust-b146ed6765fa77a817be79b05d7245cc057b7f16.tar.gz
rust-b146ed6765fa77a817be79b05d7245cc057b7f16.zip
Reword to include 'distractions'
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/fuzzing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/fuzzing.md b/src/doc/rustc-dev-guide/src/fuzzing.md
index ed75eef6767..bc7f0a0a221 100644
--- a/src/doc/rustc-dev-guide/src/fuzzing.md
+++ b/src/doc/rustc-dev-guide/src/fuzzing.md
@@ -82,8 +82,8 @@ To build a corpus, you may want to use:
 Here are a few things you can do to help the Rust project after filing an ICE.
 
 - [Bisect][bisect] the bug to figure out when it was introduced 
-- Fix unrelated problems with the test case (things like syntax errors or
-  borrow-checking errors)
+- Fix "distractions": problems with the test case that don't contribute to
+  triggering the ICE, such as syntax errors or borrow-checking errors
 - Minimize the test case (see below)
 - Add the minimal test case to [Glacier][glacier]