doc: add missing space

This commit is contained in:
Tshepang Lekhonkhobe
2015-07-17 20:55:11 +02:00
parent e4e93196e1
commit 02ae661cfd
+1 -1
View File
@@ -946,7 +946,7 @@ pub fn swap_front_remove(&mut self, index: usize) -> Option<T> {
/// let mut buf = VecDeque::new();
/// buf.push_back(10);
/// buf.push_back(12);
/// buf.insert(1,11);
/// buf.insert(1, 11);
/// assert_eq!(Some(&11), buf.get(1));
/// ```
pub fn insert(&mut self, i: usize, t: T) {