about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-05-24 01:53:53 +0000
committerbors <bors@rust-lang.org>2021-05-24 01:53:53 +0000
commit3f9646da57946ced0b494c3c57ebffdf67136fd9 (patch)
tree5fdf4c714a65fde27b8e044e2e775be6d8f4454d
parent9f69e2f8b27656a8149609196d4bc561203b5ad6 (diff)
parented75d62fd53c5656f9cf5c10713700516eec7c85 (diff)
downloadrust-3f9646da57946ced0b494c3c57ebffdf67136fd9.tar.gz
rust-3f9646da57946ced0b494c3c57ebffdf67136fd9.zip
Auto merge of #85611 - rust-lang:array-mod-doc, r=jyn514
Update std::array module doc header

This line is very outdated; not only are traits implemented on arrays of arbitrary length, those implementations are documented on the primitive type, not in this module.
-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).*