From 305957729ecfcf7f1cd368d992c4e2e793faac34 Mon Sep 17 00:00:00 2001 From: Kim Wittenburg Date: Sun, 11 Feb 2024 13:11:07 +0100 Subject: [PATCH] Fix number syntax --- spec.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spec.md b/spec.md index 79066c7..e58f3ea 100644 --- a/spec.md +++ b/spec.md @@ -754,9 +754,9 @@ note = note-type line-break note-type = %x21-22 / %x24-7E ; Visible ASCII-characters except space and # -start-beat = *DIGIT -duration = *DIGIT -pitch = [ minus ] *DIGIT +start-beat = 1*DIGIT +duration = 1*DIGIT +pitch = [ minus ] 1*DIGIT note-text = 1*( %x20-10FFFF ) minus = %x2D ; - @@ -937,7 +937,7 @@ end-of-phrase =/ dash WSP start-beat WSP rel-offset *WSP line-break -rel-offset = *DIGIT +rel-offset = 1*DIGIT ``` Note that the syntax in relative mode is incompatible with the normal syntax.