]> git.lizzy.rs Git - rust.git/commitdiff
Rollup merge of #66797 - mlodato517:mlodato517-array-doc-typo, r=Dylan-DPC
authorTyler Mandry <tmandry@gmail.com>
Wed, 27 Nov 2019 21:28:51 +0000 (15:28 -0600)
committerGitHub <noreply@github.com>
Wed, 27 Nov 2019 21:28:51 +0000 (15:28 -0600)
Fixes small typo in array docs r? @steveklabnik

Fixes a small typo in the array documentation.

Also, wasn't sure which [message](https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#pull-requests) to put this in, and will definitely update the commit message if it is supposed to be the PR description but for "safety" - r? @steveklabnik

src/libcore/array/mod.rs

index 901c1ee33cda42082903f8c96249c040aa8a3216..38d248d701d4a96138aec8877b50ead1bd5fd792 100644 (file)
@@ -1,5 +1,5 @@
 //! Implementations of things like `Eq` for fixed-length arrays
-//! up to a certain length. Eventually we should able to generalize
+//! up to a certain length. Eventually, we should be able to generalize
 //! to all lengths.
 //!
 //! *[See also the array primitive type](../../std/primitive.array.html).*