summaryrefslogtreecommitdiff
path: root/grammars
diff options
context:
space:
mode:
authoromahs <73983677+omahs@users.noreply.github.com>2024-05-07 17:20:33 +0200
committerGitHub <noreply@github.com>2024-05-07 18:20:33 +0300
commit04976db7a819fcf8bfefbfc09a3344210b79dd27 (patch)
tree5e954c895fc18c1e1d48a27383462efd7e4a2d9d /grammars
parent947d3ad27d94f1addef76b5d64c314618f063933 (diff)
docs: fix typos (#7124)
* fix typo * fix typos * fix typo * fix typos * fix typo * fix typos
Diffstat (limited to 'grammars')
-rw-r--r--grammars/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/grammars/README.md b/grammars/README.md
index c924e8d4..2b8384d9 100644
--- a/grammars/README.md
+++ b/grammars/README.md
@@ -51,7 +51,7 @@ single-line ::= [^\n]+ "\n"`
## Sequences and Alternatives
-The order of symbols in a sequence matter. For example, in `"1. " move " " move "\n"`, the `"1. "` must come before the first `move`, etc.
+The order of symbols in a sequence matters. For example, in `"1. " move " " move "\n"`, the `"1. "` must come before the first `move`, etc.
Alternatives, denoted by `|`, give different sequences that are acceptable. For example, in `move ::= pawn | nonpawn | castle`, `move` can be a `pawn` move, a `nonpawn` move, or a `castle`.