From 655155caa08af56d13bfa79753ff854634fd1417 Mon Sep 17 00:00:00 2001 From: Arnav Jindal Date: Mon, 8 Mar 2021 20:28:30 +0530 Subject: [PATCH] Update library/core/src/array/mod.rs Co-authored-by: Yuki Okushi --- library/core/src/array/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs index 201e73c2ba614..8f52985d1df71 100644 --- a/library/core/src/array/mod.rs +++ b/library/core/src/array/mod.rs @@ -382,7 +382,7 @@ impl Ord for [T; N] { // The Default impls cannot be done with const generics because `[T; 0]` doesn't // require Default to be implemented, and having different impl blocks for -// different numbers aren't supported yet. +// different numbers isn't supported yet. macro_rules! array_impl_default { {$n:expr, $t:ident $($ts:ident)*} => {