diff options
| author | Santiago Pastorino <spastorino@gmail.com> | 2018-07-06 17:25:40 -0300 |
|---|---|---|
| committer | Felix S. Klock II <pnkfelix@pnkfx.org> | 2018-07-23 13:27:32 +0200 |
| commit | e0ea756b9f366190dd7a3f00ee8d3fba8237440c (patch) | |
| tree | 58038c010483cba8fc9fd3c5e7ad9cf598d63f53 | |
| parent | 3900bf8ae3aafdd3ab13a0e6400d47bc5cb2e121 (diff) | |
| download | rust-e0ea756b9f366190dd7a3f00ee8d3fba8237440c.tar.gz rust-e0ea756b9f366190dd7a3f00ee8d3fba8237440c.zip | |
Remove duplicated report word in docs
| -rw-r--r-- | src/librustc_mir/borrow_check/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_mir/borrow_check/mod.rs b/src/librustc_mir/borrow_check/mod.rs index f581b7104a3..46046efa9ba 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<Place<'tcx>>, /// 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<Place<'tcx>>, /// 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. |
