aboutsummaryrefslogtreecommitdiff
path: root/config.ebnf
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--config.ebnf2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.ebnf b/config.ebnf
index 51c1db7..ffb588a 100644
--- a/config.ebnf
+++ b/config.ebnf
@@ -20,7 +20,7 @@ String = str .
# Primitives
word = (alpha | spec) {alpha | number | spec} .
alpha = `[a-zA-Z]` .
-spec = `\$|_` .
+spec = `\$|_|-` .
number = `-?[0-9]+(\.[0-9]+)?` .
boolean = `true|false` .
str = `"[^"]*"` | `'[^']*'` | '`' { `[^\x60]` } '`' .