Skip to content

Commit a158e43

Browse files
committed
fix trailing whitespace
1 parent af43415 commit a158e43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/alloc/src/vec/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3046,7 +3046,7 @@ impl<T: Clone, A: Allocator> Vec<T, A> {
30463046
30473047
/// let mut characters3 = vec!['a', 'b', 'c', 'd', 'e'];
30483048
/// characters2.extend_from_within(1..3);
3049-
/// assert_eq!(characters3, ['a', 'b', 'c', 'd', 'e', 'b', 'c']);
3049+
/// assert_eq!(characters3, ['a', 'b', 'c', 'd', 'e', 'b', 'c']);
30503050
/// ```
30513051
#[cfg(not(no_global_oom_handling))]
30523052
#[stable(feature = "vec_extend_from_within", since = "1.53.0")]

0 commit comments

Comments
 (0)