From 1080b571ec5187e8544918f64bd45f766718266f Mon Sep 17 00:00:00 2001 From: MetaNova Date: Tue, 24 Jun 2025 15:30:32 -0400 Subject: [PATCH] Corrected spelling mistake in c_str.rs Changed "you're" to "your" on line 470. --- library/core/src/ffi/c_str.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/ffi/c_str.rs b/library/core/src/ffi/c_str.rs index 1d2e13db218e8..881a7a24083c8 100644 --- a/library/core/src/ffi/c_str.rs +++ b/library/core/src/ffi/c_str.rs @@ -467,7 +467,7 @@ impl CStr { /// // 💀 this violates `CStr::from_ptr`'s safety contract /// // 💀 leading to a dereference of a dangling pointer, /// // 💀 which is immediate undefined behavior. - /// // 💀 *BOOM*, you're dead, you're entire program has no meaning. + /// // 💀 *BOOM*, you're dead, your entire program has no meaning. /// dbg!(unsafe { CStr::from_ptr(ptr) }); /// ``` ///