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.
This commit is contained in:
bors 2021-05-24 01:53:53 +00:00
commit 3f9646da57

View File

@ -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).*