From ec7880d4a59a6e2aed30204ee2f6498e113c7b88 Mon Sep 17 00:00:00 2001 From: wackbyte Date: Mon, 12 Feb 2024 13:53:38 -0500 Subject: [PATCH] Fix broken formatting in grammar language example (#375) --- 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`".