From bf6315ea9647528023c579b7d0882b32423fd9f6 Mon Sep 17 00:00:00 2001 From: wackbyte Date: Mon, 12 Feb 2024 13:24:13 -0500 Subject: [PATCH] Fix broken formatting in grammar language example --- SPEC.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SPEC.md b/SPEC.md index 39a9f28..8acbec1 100644 --- a/SPEC.md +++ b/SPEC.md @@ -800,7 +800,7 @@ Specifically: * `[]` are used for regex-style character matches, where any character between the brackets will be a single match. `\` is used to escape `\`, `[`, and `]`. They also support character ranges (`0-9`), and negation (`^`) -* `-` is used for "except for" or "minus" whatever follows it. For example, `a - - `'x'` means "any `a`, except something that matches the literal `'x'`". +* `-` is used for "except for" or "minus" whatever follows it. For example, + `a - 'x'` means "any `a`, except something that matches the literal `'x'`". * The prefix `^` means "something that does not match" whatever follows it. For example, `^foo` means "must not match `foo`".