Skip to content

Commit 0559f0a

Browse files
Merge pull request #1138 from bartsmykla/trait-derive-missing-dots
Added two missing full stops
2 parents a578c84 + d76a8ef commit 0559f0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/trait/derive.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ manually implemented if a more complex behavior is required.
66

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

0 commit comments

Comments
 (0)