From 039b6b3efd3a95d7b8324c6725d89bc68c6ea276 Mon Sep 17 00:00:00 2001 From: James Meng <35415298+jamesmengo@users.noreply.github.com> Date: Tue, 11 Feb 2025 06:55:05 -0800 Subject: [PATCH] Fix typo of `syntactic` in `syntax-reference.md` (#497) --- doc/syntax-reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/syntax-reference.md b/doc/syntax-reference.md index f98c2cc1..89c2c806 100644 --- a/doc/syntax-reference.md +++ b/doc/syntax-reference.md @@ -275,7 +275,7 @@ Array = "[" "]" -- empty Elements = Element ("," Element)* ``` -`Array` and `Elements` are both synactic rules, since their names begin with a capital letter. Here's what a lexical version of these rule would look like, with _explicit_ space skipping: +`Array` and `Elements` are both syntactic rules, since their names begin with a capital letter. Here's what a lexical version of these rule would look like, with _explicit_ space skipping: