Rollup merge of #59537 - goffrie:patch-3, r=Centril

Fix OnceWith docstring.

This was incorrectly copypasta'd from RepeatWith.
This commit is contained in:
Mazdak Farrokhzad 2019-03-30 07:51:47 +01:00 committed by GitHub
commit 62a78c4fcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -375,8 +375,8 @@ pub fn once<T>(value: T) -> Once<T> {
Once { inner: Some(value).into_iter() }
}
/// An iterator that repeats elements of type `A` endlessly by
/// applying the provided closure `F: FnMut() -> A`.
/// An iterator that yields a single element of type `A` by
/// applying the provided closure `F: FnOnce() -> A`.
///
/// This `struct` is created by the [`once_with`] function.
/// See its documentation for more.