Fixed std::iter::Chain documentation

This commit is contained in:
Oleg Nosov 2019-11-01 18:00:25 +03:00
parent 253fc0ed74
commit 595d818656
No known key found for this signature in database
GPG key ID: DE90B83800644E24

View file

@ -3,7 +3,7 @@ use crate::usize;
use super::super::{Iterator, DoubleEndedIterator, FusedIterator, TrustedLen};
/// An iterator that strings two iterators together.
/// An iterator that links two iterators together, in a chain.
///
/// This `struct` is created by the [`chain`] method on [`Iterator`]. See its
/// documentation for more.