From 63d524ccf63aab35526c91e988e281e713916f8d Mon Sep 17 00:00:00 2001 From: nocturn9x Date: Mon, 12 Jul 2021 18:28:01 +0200 Subject: [PATCH] Fixed typo in ast.nim's docstring --- src/meta/ast.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meta/ast.nim b/src/meta/ast.nim index 300df4a..4aa896c 100644 --- a/src/meta/ast.nim +++ b/src/meta/ast.nim @@ -41,7 +41,7 @@ ## MUST match exactly y times. Omitting both x and y is the same as using * ## - lines end with an ASCII semicolon (character code 59) and each rule must end with one ## - rules are listed in descending order: the highest-precedence rule MUST come first and all others follow -## - an "arrow" (character code 45 followed by character code 62)) MUST be used to separate rule names from their +## - an "arrow" (character code 45 followed by character code 62) MUST be used to separate rule names from their ## definition. ## A rule definition then looks something like this (without quotes): "name -> rule definition here; // optional comment" ## - literal numbers can be expressed in their decimal form (i.e. with arabic numbers). Other supported formats are