Skip to content

Commit 4ee6ee0

Browse files
Fix formatting.
1 parent a078a34 commit 4ee6ee0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/liballoc/collections/vec_deque.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1847,7 +1847,7 @@ impl<T> VecDeque<T> {
18471847
///
18481848
/// let mut buf = VecDeque::new();
18491849
/// buf.extend(1..5);
1850-
/// buf.retain(|&x| x%2 == 0);
1850+
/// buf.retain(|&x| x % 2 == 0);
18511851
/// assert_eq!(buf, [2, 4]);
18521852
/// ```
18531853
///

0 commit comments

Comments
 (0)