From 946f174028bbf2b1fe580f83ade9c002e42734b3 Mon Sep 17 00:00:00 2001 From: Mark Larah Date: Tue, 19 May 2026 16:48:12 -0700 Subject: [PATCH] Fix GAP-33 spec-md parse error by adding blank line before list The spec-md parser requires a blank line between paragraph text and unordered list items. Without it, the parser expects whitespace but finds `-` at the start of line 351. Co-Authored-By: Claude Opus 4.7 --- gaps/GAP-33/DRAFT.md | 1 + 1 file changed, 1 insertion(+) diff --git a/gaps/GAP-33/DRAFT.md b/gaps/GAP-33/DRAFT.md index e5c22aa..8e9318b 100644 --- a/gaps/GAP-33/DRAFT.md +++ b/gaps/GAP-33/DRAFT.md @@ -348,6 +348,7 @@ SetDirectiveExtension : extend directive @ Name SetArgumentsDefinitionOrExtensio # Set Operations With the provided syntax, we can create set operations + - `union`, or ∪⁠ (also known as **merge** or **set addition**). `union` is associative and commutative, much like addition. - `intersect`, or ∩. - `exclude`, or \, or - (also known as **difference** or **set subtraction**). `exclude` is neither associative nor commutative, much like subtraction.