about summary refs log tree commit diff
path: root/src/doc/trpl/plugins.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/trpl/plugins.md
parentf1241f14dc8f5e708e258a46950e8c7635efe6c7 (diff)
downloadrust-4b14f67df3c28cd1cd8ea5bf794a3e542c663d8d.tar.gz
rust-4b14f67df3c28cd1cd8ea5bf794a3e542c663d8d.zip
Replace usage of deriving with derive in docs
Diffstat (limited to 'src/doc/trpl/plugins.md')
-rw-r--r--src/doc/trpl/plugins.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/plugins.md b/src/doc/trpl/plugins.md
index 2fc361ca1b2..4cd39d407a2 100644
--- a/src/doc/trpl/plugins.md
+++ b/src/doc/trpl/plugins.md
@@ -126,7 +126,7 @@ The advantages over a simple `fn(&str) -> uint` are:
   a way to define new literal syntax for any data type.
 
 In addition to procedural macros, you can define new
-[`deriving`](../reference.html#deriving)-like attributes and other kinds of
+[`derive`](../reference.html#derive)-like attributes and other kinds of
 extensions.  See
 [`Registry::register_syntax_extension`](../rustc/plugin/registry/struct.Registry.html#method.register_syntax_extension)
 and the [`SyntaxExtension`