]> git.lizzy.rs Git - rust.git/blobdiff - library/core/src/marker.rs
Fix two false positive lints
[rust.git] / library / core / src / marker.rs
index 37446bafacb240740873234b3f51dce261457b67..71eea43aa54e1451a46d4eb23d0255a834bd4839 100644 (file)
@@ -359,7 +359,6 @@ pub trait StructuralEq {
 ///
 /// * Function item types (i.e., the distinct types defined for each function)
 /// * Function pointer types (e.g., `fn() -> i32`)
-/// * Array types, for all sizes, if the item type also implements `Copy` (e.g., `[i32; 123456]`)
 /// * Tuple types, if each component also implements `Copy` (e.g., `()`, `(i32, bool)`)
 /// * Closure types, if they capture no value from the environment
 ///   or if all such captured values implement `Copy` themselves.