mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-17 15:33:25 +03:00
doc: add missing space
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user