tamer: iter::collect::TryCollect::try_collect_ok: Doc fix

This was copied from another docblock and I messed it up.
main
Mike Gerwitz 2021-11-16 12:26:05 -05:00
parent 5233822322
commit c9be1d613d
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ pub trait TryCollect: Iterator + Sized {
}
/// Attempts to transform a [`Result<T, E>`](Result) iterator into a
/// collection of `T`,
/// collection of [`TryFromIterator<T>`](TryFromIterator),
/// which may fail in a controlled manner on either the source
/// iterator or the transformation.
///