Skip to content

Commit

Permalink
Fix number syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
codello authored and marwin89 committed Mar 3, 2024
1 parent 3757812 commit 3059577
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 ; -
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 3059577

Please sign in to comment.