From 504c4c40e9716fb47346d6e8a27389467763552a Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Wed, 5 Apr 2023 18:54:15 +0200 Subject: [PATCH] Add context to phantom comment --- compiler/rustc_data_structures/src/owned_slice.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/rustc_data_structures/src/owned_slice.rs b/compiler/rustc_data_structures/src/owned_slice.rs index dce209adfaa..146f06a1c69 100644 --- a/compiler/rustc_data_structures/src/owned_slice.rs +++ b/compiler/rustc_data_structures/src/owned_slice.rs @@ -26,10 +26,10 @@ pub struct OwnedSlice { // | touch the owner — otherwise the owner | // | could invalidate out `bytes` pointer | // | | - // | so be quite | + // | so be quiet | // +----+ +-------------------------------+ // \/ - // ⊂(´・◡・⊂ )∘˚˳° + // ⊂(´・◡・⊂ )∘˚˳° (I am the phantom remnant of #97770) #[expect(dead_code)] owner: Box, }