From b2d201167c513cecb4979c987518a0375450af0e Mon Sep 17 00:00:00 2001 From: Yota Toyama Date: Fri, 11 Apr 2025 06:43:45 +0800 Subject: [PATCH] Update src/c_string.rs Co-authored-by: Markus Reiter --- src/c_string.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/c_string.rs b/src/c_string.rs index 884d2566..6f38d094 100644 --- a/src/c_string.rs +++ b/src/c_string.rs @@ -22,7 +22,6 @@ impl CString { /// Creates a new C-compatible string with a terminating nul byte. /// /// ```rust - /// use core::ffi::CStr; /// use heapless::CString; /// /// // A fixed-size `CString` that can store up to 10 characters