diff options
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/collections/vec_deque.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/liballoc/collections/vec_deque.rs b/src/liballoc/collections/vec_deque.rs index 1bd1861db0b..7b6693268ae 100644 --- a/src/liballoc/collections/vec_deque.rs +++ b/src/liballoc/collections/vec_deque.rs @@ -1870,7 +1870,8 @@ impl<T> VecDeque<T> { self.copy_slice(src_high); } - // Some values now exist in both `other` and `self` but are made inaccessible in `other`. + // Some values now exist in both `other` and `self` but are made inaccessible + // in`other`. other.tail = other.head; } } |
