Skip to content

Commit

Permalink
Remove trailing whitespace in iter chain doc
Browse files Browse the repository at this point in the history
  • Loading branch information
pickfire committed Oct 1, 2020
1 parent 676e4f1 commit aea3f8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/src/iter/adapters/chain.rs
Expand Up @@ -12,7 +12,7 @@ use crate::usize;
/// ```
/// use std::iter::Chain;
/// use std::slice::Iter;
///
///
/// let a1 = [1, 2, 3];
/// let a2 = [4, 5, 6];
/// let iter: Chain<Iter<_>, Iter<_>> = a1.iter().chain(a2.iter());
Expand Down

0 comments on commit aea3f8d

Please sign in to comment.