Skip to content

Commit 8007ead

Browse files
committed
Rollup merge of #25659 - tshepang:improve-rendering, r=steveklabnik
2 parents 02bce96 + b55f049 commit 8007ead

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/libcore/marker.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,10 @@ pub trait Unsize<T> {
120120
/// ```
121121
///
122122
/// The `PointList` `struct` cannot implement `Copy`, because `Vec<T>` is not `Copy`. If we
123-
/// attempt to derive a `Copy` implementation, we'll get an error.
123+
/// attempt to derive a `Copy` implementation, we'll get an error:
124124
///
125125
/// ```text
126-
/// error: the trait `Copy` may not be implemented for this type; field `points` does not implement
127-
/// `Copy`
126+
/// the trait `Copy` may not be implemented for this type; field `points` does not implement `Copy`
128127
/// ```
129128
///
130129
/// ## How can I implement `Copy`?

0 commit comments

Comments
 (0)