diff --git a/src/c_string.rs b/src/c_string.rs index b7c69803..8483ee47 100644 --- a/src/c_string.rs +++ b/src/c_string.rs @@ -26,7 +26,7 @@ impl CString { /// use heapless::CString; /// /// // A fixed-size `CString` that can store up to 10 characters - /// // including the nul terminator + /// // including the nul terminator. /// let empty = CString::<10>::new(); /// /// assert_eq!(empty.as_c_str(), <&CStr>::default());