about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorEarl St Sauver <estsauver@gmail.com>2015-01-12 02:02:38 -0800
committerEarl St Sauver <estsauver@gmail.com>2015-01-17 11:08:02 -0800
commit6ab95bdd62095429139f1b24717cbf0e5aa4a235 (patch)
treeea86c09f7fe7863d8f13ccf2b836c3127919571f /src/libstd
parent89c4e3792ddc5b45706ea0e919806a248f7a87c3 (diff)
downloadrust-6ab95bdd62095429139f1b24717cbf0e5aa4a235.tar.gz
rust-6ab95bdd62095429139f1b24717cbf0e5aa4a235.zip
s/deriving/derives in Comments/Docs
There are a large number of places that incorrectly refer
to deriving in comments, instead of derives.

Fixes #20984
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/fmt.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/fmt.rs b/src/libstd/fmt.rs
index 907925e93d3..5cd54c08ccb 100644
--- a/src/libstd/fmt.rs
+++ b/src/libstd/fmt.rs
@@ -225,7 +225,7 @@
 //! - `fmt::Show` implementations should be implemented for **all** public types.
 //!   Output will typically represent the internal state as faithfully as possible.
 //!   The purpose of the `Show` trait is to facilitate debugging Rust code. In
-//!   most cases, using `#[deriving(Show)]` is sufficient and recommended.
+//!   most cases, using `#[derive(Show)]` is sufficient and recommended.
 //!
 //! Some examples of the output from both traits:
 //!