From 54441484d13998eef3354780c86e97342776483d Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 5 Oct 2018 09:15:44 -0700 Subject: [PATCH] Revert "Fix tidy" This reverts commit 1908892d3f60008f265dfc25ac46db387c0ad6a0. --- src/liballoc/collections/vec_deque.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/liballoc/collections/vec_deque.rs b/src/liballoc/collections/vec_deque.rs index 7b6693268ae..1bd1861db0b 100644 --- a/src/liballoc/collections/vec_deque.rs +++ b/src/liballoc/collections/vec_deque.rs @@ -1870,8 +1870,7 @@ pub fn append(&mut self, other: &mut Self) { 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; } } -- 2.44.0