Skip to content

Commit

Permalink
Rollup merge of rust-lang#27095 - tshepang:space, r=alexcrichton
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishearth committed Jul 18, 2015
2 parents fdc39cd + 02ae661 commit 1f0564b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcollections/vec_deque.rs
Original file line number Diff line number Diff line change
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 1f0564b

Please sign in to comment.