From 69dbbd548d0908bc4dcdc8e51db874616d37f095 Mon Sep 17 00:00:00 2001 From: Langston Barrett Date: Thu, 16 Mar 2023 17:51:11 -0400 Subject: [PATCH] Reword to include 'distractions' --- src/fuzzing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fuzzing.md b/src/fuzzing.md index ed75eef6..bc7f0a0a 100644 --- a/src/fuzzing.md +++ b/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]