From 8a5969d2e91d9791f508f8f4631234f87099ae41 Mon Sep 17 00:00:00 2001 From: Mazdak Farrokhzad Date: Sun, 15 Dec 2019 15:40:47 +0100 Subject: [PATCH] Fix repetition in matches/mod.rs --- src/librustc_mir/build/matches/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/librustc_mir/build/matches/mod.rs b/src/librustc_mir/build/matches/mod.rs index 032ea7d8161cb..718e8bd4e936d 100644 --- a/src/librustc_mir/build/matches/mod.rs +++ b/src/librustc_mir/build/matches/mod.rs @@ -69,8 +69,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> { /// 3. Create the decision tree and record the places that we bind or test. /// 4. Determine the fake borrows that are needed from the above places. /// Create the required temporaries for them. - /// 5. Create everything else: Create everything else: the guards and the - /// arms. + /// 5. Create everything else: the guards and the arms. /// /// ## Fake Reads and borrows ///