Skip to content

Commit b2b9707

Browse files
committed
Rollup merge of #48603 - pthariensflame:patch-1, r=frewsxcv
Fixes #47311. r? @nrc
2 parents f57835b + db6a5ee commit b2b9707

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/iter/iterator.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1062,8 +1062,8 @@ pub trait Iterator {
10621062
/// assert_eq!(merged, "alphabetagamma");
10631063
/// ```
10641064
///
1065-
/// You can also rewrite this in terms of [`flat_map()`] which is preferable
1066-
/// in this case since that conveys intent clearer:
1065+
/// You can also rewrite this in terms of [`flat_map()`], which is preferable
1066+
/// in this case since it conveys intent more clearly:
10671067
///
10681068
/// ```
10691069
/// let words = ["alpha", "beta", "gamma"];

0 commit comments

Comments
 (0)