Skip to content

Commit 243c725

Browse files
committed
Auto merge of #75561 - kornelski:stringcol, r=Dylan-DPC
Doc: String isn't a collection On forums one user was confused by this text, interpreting it as saying that `String` is a `Vec<char>` literally, rather than figuratively for the purpose of collect. I've reworded that paragraph.
2 parents 9d38dc2 + d5cb5eb commit 243c725

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

library/core/src/iter/traits/iterator.rs

+4-5
Original file line numberDiff line numberDiff line change
@@ -1543,11 +1543,10 @@ pub trait Iterator {
15431543
/// collection into another. You take a collection, call [`iter`] on it,
15441544
/// do a bunch of transformations, and then `collect()` at the end.
15451545
///
1546-
/// One of the keys to `collect()`'s power is that many things you might
1547-
/// not think of as 'collections' actually are. For example, a [`String`]
1548-
/// is a collection of [`char`]s. And a collection of
1549-
/// [`Result<T, E>`][`Result`] can be thought of as single
1550-
/// [`Result`]`<Collection<T>, E>`. See the examples below for more.
1546+
/// `collect()` can also create instances of types that are not typical
1547+
/// collections. For example, a [`String`] can be built from [`char`]s,
1548+
/// and an iterator of [`Result<T, E>`][`Result`] items can be collected
1549+
/// into `Result<Collection<T>, E>`. See the examples below for more.
15511550
///
15521551
/// Because `collect()` is so general, it can cause problems with type
15531552
/// inference. As such, `collect()` is one of the few times you'll see

0 commit comments

Comments
 (0)