summary refs log tree commit diff
path: root/src/doc/rustdoc.md
diff options
context:
space:
mode:
authorGreg Chapple <gregchapple1@gmail.com>2015-01-06 10:56:14 +0000
committerGreg Chapple <gregchapple1@gmail.com>2015-01-13 13:57:09 +0000
commit4b14f67df3c28cd1cd8ea5bf794a3e542c663d8d (patch)
tree6dca535c770cb8b7441717e7c75c0a13e69ae672 /src/doc/rustdoc.md
parentf1241f14dc8f5e708e258a46950e8c7635efe6c7 (diff)
downloadrust-4b14f67df3c28cd1cd8ea5bf794a3e542c663d8d.tar.gz
rust-4b14f67df3c28cd1cd8ea5bf794a3e542c663d8d.zip
Replace usage of deriving with derive in docs
Diffstat (limited to 'src/doc/rustdoc.md')
-rw-r--r--src/doc/rustdoc.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustdoc.md b/src/doc/rustdoc.md
index 054552559db..aba13d31989 100644
--- a/src/doc/rustdoc.md
+++ b/src/doc/rustdoc.md
@@ -198,7 +198,7 @@ Rustdoc also supplies some extra sugar for helping with some tedious
 documentation examples. If a line is prefixed with `# `, then the line
 will not show up in the HTML documentation, but it will be used when
 testing the code block (NB. the space after the `#` is required, so
-that one can still write things like `#[deriving(Eq)]`).
+that one can still write things like `#[derive(Eq)]`).
 
 ~~~md
 ```