From 1b1653b593a1e8892196c22058286638f2812186 Mon Sep 17 00:00:00 2001 From: tocariimaa Date: Mon, 20 Jan 2025 17:50:04 -0300 Subject: [PATCH] use double quotes here --- docs/grammar.abnf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/grammar.abnf b/docs/grammar.abnf index 22fb652..0517348 100644 --- a/docs/grammar.abnf +++ b/docs/grammar.abnf @@ -4,7 +4,7 @@ ; - alternatives are ordered function-kind = "proc" / "iter" -proc-decl = function-kind ident ["*"] "(" [proc-decl-args] ")" [":" ident] *stmt 'end' +proc-decl = function-kind ident ["*"] "(" [proc-decl-args] ")" [":" ident] *stmt "end" proc-decl-args = symbol-type-pair *("," symbol-type-pair) symbol-type-pair = ident ":" ident