about summary refs log tree commit diff
path: root/src/libcore/array
diff options
context:
space:
mode:
authorMark Lodato <mlodato517@gmail.com>2019-11-26 20:58:38 -0500
committerMark Lodato <mark.lodato@ezcater.com>2019-11-26 21:04:28 -0500
commit9dc3f4b05bbdacedecdfbe4116b309d5757280e1 (patch)
tree5ae1f9e496d0ab05b11fe2cc94e06dfece9fd613 /src/libcore/array
parenta7d791b4503a86c1b16b4393ba7998ef8b561a27 (diff)
downloadrust-9dc3f4b05bbdacedecdfbe4116b309d5757280e1.tar.gz
rust-9dc3f4b05bbdacedecdfbe4116b309d5757280e1.zip
Fixes small typo in array docs r? @steveklabnik
Diffstat (limited to 'src/libcore/array')
-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..f9584a8c078 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).*