From 469620fd8e3eafd955d0625e45ae5a6de94e6ff6 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Wed, 26 Aug 2015 22:40:56 +0200 Subject: [PATCH] doc: I had to read this twice before understanding it --- src/libcore/default.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/default.rs b/src/libcore/default.rs index f5103d394eef0..0e318f204eb9d 100644 --- a/src/libcore/default.rs +++ b/src/libcore/default.rs @@ -78,7 +78,7 @@ #![stable(feature = "rust1", since = "1.0.0")] -/// A trait that types which have a useful default value should implement. +/// A trait for giving a type a useful default value. /// /// A struct can derive default implementations of `Default` for basic types using /// `#[derive(Default)]`.