about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/librustc_mir/borrow_check/borrow_set.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_mir/borrow_check/borrow_set.rs b/src/librustc_mir/borrow_check/borrow_set.rs
index 5d0913e8eb4..3d6f49c3772 100644
--- a/src/librustc_mir/borrow_check/borrow_set.rs
+++ b/src/librustc_mir/borrow_check/borrow_set.rs
@@ -54,7 +54,7 @@ impl<'tcx> Index<BorrowIndex> for BorrowSet<'tcx> {
 }
 
 /// Every two-phase borrow has *exactly one* use (or else it is not a
-/// proper two-phase borrow under our current definition. However, not
+/// proper two-phase borrow under our current definition). However, not
 /// all uses are actually ones that activate the reservation.. In
 /// particular, a shared borrow of a `&mut` does not activate the
 /// reservation.