about summary refs log tree commit diff
path: root/src/librustc_mir
diff options
context:
space:
mode:
authorMatthew Kraai <kraai@ftbfs.org>2019-12-28 07:05:44 -0800
committerMatthew Kraai <kraai@ftbfs.org>2019-12-28 07:05:44 -0800
commit9ec924c97df970be1d7992df74206c149490b066 (patch)
tree4eeae14c50554fb970f980651ba9f332898f2e82 /src/librustc_mir
parentf564c4db0d97eabd7fdd72e589d3e415790ee2a4 (diff)
downloadrust-9ec924c97df970be1d7992df74206c149490b066.tar.gz
rust-9ec924c97df970be1d7992df74206c149490b066.zip
Change "be returning" to "return"
Diffstat (limited to 'src/librustc_mir')
-rw-r--r--src/librustc_mir/borrow_check/universal_regions.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_mir/borrow_check/universal_regions.rs b/src/librustc_mir/borrow_check/universal_regions.rs
index 141289bd2b2..4e3aa4c65b6 100644
--- a/src/librustc_mir/borrow_check/universal_regions.rs
+++ b/src/librustc_mir/borrow_check/universal_regions.rs
@@ -5,7 +5,7 @@
 //! fn foo<'a, 'b, 'c: 'b>() { }
 //! ```
 //!
-//! here we would be returning a map assigning each of `{'a, 'b, 'c}`
+//! here we would return a map assigning each of `{'a, 'b, 'c}`
 //! to an index, as well as the `FreeRegionMap` which can compute
 //! relationships between them.
 //!