about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorTyler Mandry <tmandry@gmail.com>2019-11-27 15:28:51 -0600
committerGitHub <noreply@github.com>2019-11-27 15:28:51 -0600
commitd1cc4c3096bc8b6c49bc323673ed34e11535772e (patch)
treedbe81fc31ffdcb58e713ece13af1f89d62a1bfac /src/libcore
parent6a1fe67cac7866941dacd735f899f4532c816faa (diff)
parentce9b6972c25c1499c17821d2b4a51238e79f0355 (diff)
downloadrust-d1cc4c3096bc8b6c49bc323673ed34e11535772e.tar.gz
rust-d1cc4c3096bc8b6c49bc323673ed34e11535772e.zip
Rollup merge of #66797 - mlodato517:mlodato517-array-doc-typo, r=Dylan-DPC
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
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/array/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/array/mod.rs b/src/libcore/array/mod.rs
index 901c1ee33cd..38d248d701d 100644
--- a/src/libcore/array/mod.rs
+++ b/src/libcore/array/mod.rs
@@ -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).*