Remove trailing whitespace in iter chain doc

This commit is contained in:
Ivan Tham 2020-10-02 01:21:36 +08:00 committed by GitHub
parent 676e4f193c
commit aea3f8dbc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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());