diff options
| author | Arnav Jindal <arnav.jindal7@gmail.com> | 2021-03-08 20:28:30 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-08 20:28:30 +0530 |
| commit | 655155caa08af56d13bfa79753ff854634fd1417 (patch) | |
| tree | befe3fcea7b853db4706d687f4c8a38b3c725a2d /library/core/src/array | |
| parent | 2aa28ad4f013d520740b0e990e6bf93e0d0471b5 (diff) | |
| download | rust-655155caa08af56d13bfa79753ff854634fd1417.tar.gz rust-655155caa08af56d13bfa79753ff854634fd1417.zip | |
Update library/core/src/array/mod.rs
Co-authored-by: Yuki Okushi <huyuumi.dev@gmail.com>
Diffstat (limited to 'library/core/src/array')
| -rw-r--r-- | library/core/src/array/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs index 201e73c2ba6..8f52985d1df 100644 --- a/library/core/src/array/mod.rs +++ b/library/core/src/array/mod.rs @@ -382,7 +382,7 @@ impl<T: Ord, const N: usize> 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)*} => { |
