zig

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

commit 6fe7dd93cba334ebb686d56770d4afe254cb2e50 (tree)
parent 65b7d855244c36407c094126da1c77391e378526
Author: Josh Wolfe <thejoshwolfe@gmail.com>
Date:   Mon, 22 Oct 2018 20:44:59 -0400

that's not a keyword

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 @@ -7800,7 +7800,7 @@ CancelExpression = "cancel" Expression; ResumeExpression = "resume" Expression; -Defer(body) = ("defer" | "deferror") body +Defer(body) = ("defer" | "errdefer") body IfExpression(body) = "if" "(" Expression ")" body option("else" BlockExpression(body))