about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/rustc_data_structures/src')
-rw-r--r--compiler/rustc_data_structures/src/owned_slice.rs4
1 files 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<dyn Send + Sync>,
 }