Skip to content

Commit

Permalink
doc: add missing space
Browse files Browse the repository at this point in the history
  • Loading branch information
tshepang committed Jul 17, 2015
1 parent e4e9319 commit 02ae661
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcollections/vec_deque.rs
Expand Up @@ -946,7 +946,7 @@ impl<T> VecDeque<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) {
Expand Down

0 comments on commit 02ae661

Please sign in to comment.