From cf943c0047d8e5c92507c0c4b9ccf7063cb1b7c4 Mon Sep 17 00:00:00 2001 From: decorator-factory <42166884+decorator-factory@users.noreply.github.com> Date: Sun, 5 Jul 2020 11:36:51 +0300 Subject: [PATCH] Fix typo in docs https://en.wiktionary.org/wiki/seperated --- docs/grammar.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/grammar.md b/docs/grammar.md index b9fe7f6..d6cc274 100644 --- a/docs/grammar.md +++ b/docs/grammar.md @@ -101,9 +101,9 @@ some_rule: my_template{arg1, arg2, ...} Example: ```ebnf -_seperated{x, sep}: x (sep x)* // Define a sequence of 'x sep x sep x ...' +_separated{x, sep}: x (sep x)* // Define a sequence of 'x sep x sep x ...' -num_list: "[" _seperated{NUMBER, ","} "]" // Will match "[1, 2, 3]" etc. +num_list: "[" _separated{NUMBER, ","} "]" // Will match "[1, 2, 3]" etc. ``` ### Priority