Skip to content

Commit d76a8ef

Browse files
author
Bart Smykla
committed
Added two missing full stops
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]>
1 parent b91b2ce commit d76a8ef

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)