about summary refs log tree commit diff
path: root/library/core/src/array
diff options
context:
space:
mode:
authorbstrie <865233+bstrie@users.noreply.github.com>2021-05-23 15:55:27 -0400
committerGitHub <noreply@github.com>2021-05-23 15:55:27 -0400
commited75d62fd53c5656f9cf5c10713700516eec7c85 (patch)
tree4ac9ce6fa1855eacfaa391a5d3c6d910a37d4da7 /library/core/src/array
parentd8af907491e20339e41d048d6a32b41ddfa91dfe (diff)
downloadrust-ed75d62fd53c5656f9cf5c10713700516eec7c85.tar.gz
rust-ed75d62fd53c5656f9cf5c10713700516eec7c85.zip
Update std::array module doc header
Extremely outdated; not only are traits implemented on arrays of arbitrary length, those implementations are documented on the primitive type, not in this module.
Diffstat (limited to 'library/core/src/array')
-rw-r--r--library/core/src/array/mod.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs
index 8b56c9560aa..2cef3a647ff 100644
--- a/library/core/src/array/mod.rs
+++ b/library/core/src/array/mod.rs
@@ -1,6 +1,4 @@
-//! Implementations of things like `Eq` for fixed-length arrays
-//! up to a certain length. Eventually, we should be able to generalize
-//! to all lengths.
+//! Helper functions and types for fixed-length arrays.
 //!
 //! *[See also the array primitive type](array).*