From 70a9ad67af52de0c429badbf7af9b2e9c1eb12a1 Mon Sep 17 00:00:00 2001 From: bluss Date: Wed, 25 Sep 2019 14:48:16 +0200 Subject: [PATCH] DOC: Copyedit the Array doc comment again --- src/array.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/array.rs b/src/array.rs index 27f6a57..6fab7ea 100644 --- a/src/array.rs +++ b/src/array.rs @@ -15,11 +15,11 @@ /// /// ## Safety /// -/// If implemented, this trait can only be implmented by fixed-size arrays or -/// types with exactly the representation of a fixed size array (of the right -/// element type and capacity). +/// This trait can *only* be implemented by fixed-size arrays or types with +/// *exactly* the representation of a fixed size array (of the right element +/// type and capacity). /// -/// Normally this trait is an implementation detail of arrayvec and doesn't +/// Normally this trait is an implementation detail of arrayvec and doesn’t /// need implementing. pub unsafe trait Array { /// The array’s element type