From: Shotaro Yamada Date: Mon, 13 Nov 2017 03:21:05 +0000 (+0900) Subject: Fix comments X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=f99142b977bc6e22aa3937f95a799490df735c7b;p=rust.git Fix comments --- 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. //