diff options
| author | MaloJaffre <jaffre.malo@gmail.com> | 2018-08-28 15:59:21 +0200 |
|---|---|---|
| committer | MaloJaffre <jaffre.malo@gmail.com> | 2018-08-28 15:59:21 +0200 |
| commit | 1908892d3f60008f265dfc25ac46db387c0ad6a0 (patch) | |
| tree | a66c34b9f296b1e56b8ac2606c8334a6e0bd4d02 /src/liballoc | |
| parent | 1a1a7f6167edf18b8a0ab488e651f7748cc2e9d3 (diff) | |
| download | rust-1908892d3f60008f265dfc25ac46db387c0ad6a0.tar.gz rust-1908892d3f60008f265dfc25ac46db387c0ad6a0.zip | |
Fix tidy
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; } } |
