Skip to content

Commit

Permalink
Merge pull request #1138 from bartsmykla/trait-derive-missing-dots
Browse files Browse the repository at this point in the history
Added two missing full stops
  • Loading branch information
QuietMisdreavus authored Jan 8, 2019
2 parents a578c84 + d76a8ef commit 0559f0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/trait/derive.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ manually implemented if a more complex behavior is required.

The following is a list of derivable traits:
* Comparison traits:
[`Eq`][eq], [`PartialEq`][partial-eq], [`Ord`][ord], [`PartialOrd`][partial-ord]
[`Eq`][eq], [`PartialEq`][partial-eq], [`Ord`][ord], [`PartialOrd`][partial-ord].
* [`Clone`][clone], to create `T` from `&T` via a copy.
* [`Copy`][copy], to give a type 'copy semantics' instead of 'move semantics'
* [`Copy`][copy], to give a type 'copy semantics' instead of 'move semantics'.
* [`Hash`][hash], to compute a hash from `&T`.
* [`Default`][default], to create an empty instance of a data type.
* [`Debug`][debug], to format a value using the `{:?}` formatter.
Expand Down

0 comments on commit 0559f0a

Please sign in to comment.