diff options
| author | panicbit <panicbit.dev@gmail.com> | 2015-10-08 07:27:26 +0200 |
|---|---|---|
| committer | panicbit <panicbit.dev@gmail.com> | 2015-10-08 07:27:26 +0200 |
| commit | 7515514fdccbfb7e41b9ba7844f9b34308efe7f0 (patch) | |
| tree | 3ed22c06037a873f6236418a50178de99e09315f | |
| parent | 4d7eee1817582c4bf70862d47aca9e75bb264bc7 (diff) | |
| download | rust-7515514fdccbfb7e41b9ba7844f9b34308efe7f0.tar.gz rust-7515514fdccbfb7e41b9ba7844f9b34308efe7f0.zip | |
trpl: link to derivable trait's docs
| -rw-r--r-- | src/doc/trpl/traits.md | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/doc/trpl/traits.md b/src/doc/trpl/traits.md index 8726a29d710..27debf86e39 100644 --- a/src/doc/trpl/traits.md +++ b/src/doc/trpl/traits.md @@ -512,12 +512,12 @@ fn main() { However, deriving is limited to a certain set of traits: -- `Clone` -- `Copy` -- `Debug` -- `Default` -- `Eq` -- `Hash` -- `Ord` -- `PartialEq` -- `PartialOrd` +- [`Clone`](../core/clone/trait.Clone.html) +- [`Copy`](../core/marker/trait.Copy.html) +- [`Debug`](../core/fmt/trait.Debug.html) +- [`Default`](../core/default/trait.Default.html) +- [`Eq`](../core/cmp/trait.Eq.html) +- [`Hash`](../core/hash/trait.Hash.html) +- [`Ord`](../core/cmp/trait.Ord.html) +- [`PartialEq`](../core/cmp/trait.PartialEq.html) +- [`PartialOrd`](../core/cmp/trait.PartialOrd.html) |
