From 1908892d3f60008f265dfc25ac46db387c0ad6a0 Mon Sep 17 00:00:00 2001 From: MaloJaffre Date: Tue, 28 Aug 2018 15:59:21 +0200 Subject: [PATCH] Fix tidy --- src/liballoc/collections/vec_deque.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/liballoc/collections/vec_deque.rs b/src/liballoc/collections/vec_deque.rs index 1bd1861db0b27..7b6693268ae3f 100644 --- a/src/liballoc/collections/vec_deque.rs +++ b/src/liballoc/collections/vec_deque.rs @@ -1870,7 +1870,8 @@ impl VecDeque { 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; } }