From bba4576281241e8824de3d48b65c55fa1b1d4c9c Mon Sep 17 00:00:00 2001 From: Ogromny Date: Thu, 24 Sep 2020 15:14:57 +0200 Subject: [PATCH] Fix typo in documentation --- doc/langref.html.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/langref.html.in b/doc/langref.html.in index 504a4e02e2..6b8b07e0b3 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -1840,7 +1840,7 @@ const Point = struct { y: i32, }; -test "compile-time array initalization" { +test "compile-time array initialization" { assert(fancy_array[4].x == 4); assert(fancy_array[4].y == 8); }