about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src/owned_slice.rs
diff options
context:
space:
mode:
authorNilstrieb <48135649+Nilstrieb@users.noreply.github.com>2023-04-05 18:54:15 +0200
committerNilstrieb <48135649+Nilstrieb@users.noreply.github.com>2023-04-05 18:55:55 +0200
commit504c4c40e9716fb47346d6e8a27389467763552a (patch)
tree9c4064517ab586fc96a62d89c2a54b8fa0d4dda6 /compiler/rustc_data_structures/src/owned_slice.rs
parent9405f586f5ce5db00b01468788bdd71c09ffd1bc (diff)
downloadrust-504c4c40e9716fb47346d6e8a27389467763552a.tar.gz
rust-504c4c40e9716fb47346d6e8a27389467763552a.zip
Add context to phantom comment
Diffstat (limited to 'compiler/rustc_data_structures/src/owned_slice.rs')
-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>,
 }