From d76a8ef5d1853a41c786afc53c4b56889c6c7b95 Mon Sep 17 00:00:00 2001 From: Bart Smykla Date: Sun, 30 Dec 2018 19:28:00 +0000 Subject: [PATCH] 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 --- src/trait/derive.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/trait/derive.md b/src/trait/derive.md index a1b0ad8f12..ff37bffc67 100644 --- a/src/trait/derive.md +++ b/src/trait/derive.md @@ -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.