From 9dc3f4b05bbdacedecdfbe4116b309d5757280e1 Mon Sep 17 00:00:00 2001 From: Mark Lodato Date: Tue, 26 Nov 2019 20:58:38 -0500 Subject: [PATCH 1/2] Fixes small typo in array docs r? @steveklabnik --- src/libcore/array/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/array/mod.rs b/src/libcore/array/mod.rs index 901c1ee33cda4..f9584a8c07834 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).* From ce9b6972c25c1499c17821d2b4a51238e79f0355 Mon Sep 17 00:00:00 2001 From: Dylan DPC Date: Wed, 27 Nov 2019 10:27:30 +0100 Subject: [PATCH 2/2] Update mod.rs --- src/libcore/array/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/array/mod.rs b/src/libcore/array/mod.rs index f9584a8c07834..38d248d701d4a 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 be 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).*