From 22f37f24ac54420173738a2ac2db3f7e26138337 Mon Sep 17 00:00:00 2001 From: lcnr Date: Fri, 26 Feb 2021 18:54:24 +0100 Subject: [PATCH] fix nit --- posts/2021-02-26-const-generics-mvp-beta.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/2021-02-26-const-generics-mvp-beta.md b/posts/2021-02-26-const-generics-mvp-beta.md index 34463336b..542a0aecf 100644 --- a/posts/2021-02-26-const-generics-mvp-beta.md +++ b/posts/2021-02-26-const-generics-mvp-beta.md @@ -102,7 +102,7 @@ One difficulty lies in the necessity of having some way to compare unevaluated c // entities in the compiler, so we need a way to check // if they should be considered equal. fn foo() -> [u8; N + 1] { - [u8; N + 1] + [0; N + 1] } ```