Remove superfluous PEG whitspace rules

This commit is contained in:
Emery Hemingway 2023-12-19 14:49:40 +02:00
parent 5267b7dc13
commit 126365d164
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# Package
version = "20231215"
version = "20231219"
author = "Emery Hemingway"
description = "data model and serialization format"
license = "Unlicense"

View File

@ -22,11 +22,11 @@ grammar "Preserves":
Record <- '<' * Value * *Value * ws * '>'
Sequence <- '[' * ws * *(Value * ws) * ']'
Sequence <- '[' * *Value * ws * ']'
Dictionary <- '{' * ws * *(Value * ws * ':' * ws * Value * ws) * '}'
Dictionary <- '{' * *(Value * ':' * Value) * ws * '}'
Set <- "#{" * ws * *(Value * ws) * '}'
Set <- "#{" * *Value * ws * '}'
Boolean <- "#f" | "#t"