Update marker.rs

This commit is contained in:
Godfrey Chan 2024-09-03 12:20:36 -07:00 committed by GitHub
parent efc20deb57
commit 277a08c7d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -293,7 +293,7 @@ pub trait StructuralPartialEq {
/// ///
/// ``` /// ```
/// #[derive(Clone)] /// #[derive(Clone)]
/// struct MyStruct<T>; /// struct MyStruct<T>(T);
/// ///
/// impl<T: Copy> Copy for MyStruct<T> { } /// impl<T: Copy> Copy for MyStruct<T> { }
/// ``` /// ```