From e0ea756b9f366190dd7a3f00ee8d3fba8237440c Mon Sep 17 00:00:00 2001 From: Santiago Pastorino Date: Fri, 6 Jul 2018 17:25:40 -0300 Subject: [PATCH] Remove duplicated report word in docs --- src/librustc_mir/borrow_check/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc_mir/borrow_check/mod.rs b/src/librustc_mir/borrow_check/mod.rs index f581b7104a38..46046efa9ba6 100644 --- a/src/librustc_mir/borrow_check/mod.rs +++ b/src/librustc_mir/borrow_check/mod.rs @@ -366,7 +366,7 @@ pub struct MirBorrowckCtxt<'cx, 'gcx: 'tcx, 'tcx: 'cx> { /// at the time we detect and report a reservation error. reservation_error_reported: FxHashSet>, /// This field keeps track of errors reported in the checking of moved variables, - /// so that we don't report report seemingly duplicate errors. + /// so that we don't report seemingly duplicate errors. moved_error_reported: FxHashSet>, /// This field keeps track of all the local variables that are declared mut and are mutated. /// Used for the warning issued by an unused mutable local variable.