Replace usage of deriving with derive in docs

This commit is contained in:
Greg Chapple 2015-01-06 10:56:14 +00:00
parent f1241f14dc
commit 4b14f67df3
3 changed files with 6 additions and 6 deletions

View file

@ -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`