zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit bba4576281241e8824de3d48b65c55fa1b1d4c9c (tree)
parent c8cd6145ac2475e298a3d3b2082e1966fda811d5
Author: Ogromny <ogromnycoding@gmail.com>
Date:   Thu, 24 Sep 2020 15:14:57 +0200

Fix typo in documentation

Diffstat:
Mdoc/langref.html.in | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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); }