about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--library/core/src/default.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/default.rs b/library/core/src/default.rs
index cc9289307c1..1cc4fb6e8fd 100644
--- a/library/core/src/default.rs
+++ b/library/core/src/default.rs
@@ -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:
 ///