From b55f0497db7350e0033b626b317e53cf95b9a8b4 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Wed, 20 May 2015 23:09:49 +0200 Subject: [PATCH] doc: that did not render well, so make it fit in one line --- src/libcore/marker.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs index 5909c5cc30e..86e91df38ab 100644 --- a/src/libcore/marker.rs +++ b/src/libcore/marker.rs @@ -120,11 +120,10 @@ pub trait Unsize { /// ``` /// /// The `PointList` `struct` cannot implement `Copy`, because `Vec` is not `Copy`. If we -/// attempt to derive a `Copy` implementation, we'll get an error. +/// attempt to derive a `Copy` implementation, we'll get an error: /// /// ```text -/// error: the trait `Copy` may not be implemented for this type; field `points` does not implement -/// `Copy` +/// the trait `Copy` may not be implemented for this type; field `points` does not implement `Copy` /// ``` /// /// ## How can I implement `Copy`?