From f99142b977bc6e22aa3937f95a799490df735c7b Mon Sep 17 00:00:00 2001 From: Shotaro Yamada Date: Mon, 13 Nov 2017 12:21:05 +0900 Subject: [PATCH] Fix comments --- src/librustc_mir/borrow_check.rs | 4 +++- src/test/ui/borrowck/borrowck-closures-two-mut.rs | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/librustc_mir/borrow_check.rs b/src/librustc_mir/borrow_check.rs index 6d4f521e99e..b723b86776b 100644 --- a/src/librustc_mir/borrow_check.rs +++ b/src/librustc_mir/borrow_check.rs @@ -1169,8 +1169,10 @@ fn report_use_while_mutably_borrowed(&mut self, err.emit(); } - /// Finds the span of arguments of aclosure (within `maybe_closure_span`) and its usage of + /// Finds the span of arguments of a closure (within `maybe_closure_span`) and its usage of /// the local assigned at `location`. + /// This is done by searching in statements succeeding `location` + /// and originating from `maybe_closure_span`. fn find_closure_span( &self, maybe_closure_span: Span, diff --git a/src/test/ui/borrowck/borrowck-closures-two-mut.rs b/src/test/ui/borrowck/borrowck-closures-two-mut.rs index 4b6f992f097..182b3d75442 100644 --- a/src/test/ui/borrowck/borrowck-closures-two-mut.rs +++ b/src/test/ui/borrowck/borrowck-closures-two-mut.rs @@ -1,4 +1,4 @@ -// Copyright 2014 The Rust Project Developers. See the COPYRIGHT +// Copyright 2017 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // -- 2.44.0