Skip to content

Commit 71b6ae9

Browse files
authored
Rollup merge of #67679 - kraai:change-be-returning-to-return, r=Dylan-DPC
Change "be returning" to "return"
2 parents e619b6c + 9ec924c commit 71b6ae9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/librustc_mir/borrow_check/universal_regions.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//! fn foo<'a, 'b, 'c: 'b>() { }
66
//! ```
77
//!
8-
//! here we would be returning a map assigning each of `{'a, 'b, 'c}`
8+
//! here we would return a map assigning each of `{'a, 'b, 'c}`
99
//! to an index, as well as the `FreeRegionMap` which can compute
1010
//! relationships between them.
1111
//!

src/libstd/env.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//!
77
//! There are several functions and structs in this module that have a
88
//! counterpart ending in `os`. Those ending in `os` will return an [`OsString`]
9-
//! and those without will be returning a [`String`].
9+
//! and those without will return a [`String`].
1010
//!
1111
//! [`OsString`]: ../../std/ffi/struct.OsString.html
1212
//! [`String`]: ../string/struct.String.html

0 commit comments

Comments
 (0)