Skip to content

Commit

Permalink
Added two missing full stops
Browse files Browse the repository at this point in the history
In listing of derivable traits, two of the list items
didn't have full stop at the end, like the other items.

Signed-off-by: Bart Smykla <[email protected]>
  • Loading branch information
Bart Smykla committed Dec 30, 2018
1 parent b91b2ce commit d76a8ef
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 d76a8ef

Please sign in to comment.