about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/libcore/default.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/default.rs b/src/libcore/default.rs
index 15ac3aea8b7..06402a05d26 100644
--- a/src/libcore/default.rs
+++ b/src/libcore/default.rs
@@ -54,7 +54,7 @@
 ///
 /// ## How can I implement `Default`?
 ///
-/// Provides an implementation for the `default()` method that returns the value of
+/// Provide an implementation for the `default()` method that returns the value of
 /// your type that should be the default:
 ///
 /// ```