Fix typo in default.rs

This commit is contained in:
Justin Yao Du 2025-09-07 21:16:35 -07:00 committed by GitHub
parent 2f3f27bf79
commit 7fa23530bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -33,7 +33,7 @@ use crate::ascii::Char as AsciiChar;
/// }
/// ```
///
/// Now, you get all of the default values. Rust implements `Default` for various primitives types.
/// Now, you get all of the default values. Rust implements `Default` for various primitive types.
///
/// If you want to override a particular option, but still retain the other defaults:
///