We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d7eee1 commit 7515514Copy full SHA for 7515514
src/doc/trpl/traits.md
@@ -512,12 +512,12 @@ fn main() {
512
513
However, deriving is limited to a certain set of traits:
514
515
-- `Clone`
516
-- `Copy`
517
-- `Debug`
518
-- `Default`
519
-- `Eq`
520
-- `Hash`
521
-- `Ord`
522
-- `PartialEq`
523
-- `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)
0 commit comments