diff --git a/README.md b/README.md index d873af1..93ada20 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This is a very simplistic parser for string values according to the [OSM opening hours specification][opening-hours-specification]. -It parses 144'477 (90%) of 161'268 unique test strings in non-strict mode. The remaining 16'127 are likely valid errors, spot checking shows that they have obvious issues. In strict mode further 20'417 fail (total 36'544). +It parses 145'141 (90%) of 161'268 unique test strings in non-strict mode. The remaining 16'127 are likely valid errors, spot checking shows that they have obvious issues. In strict mode further 20'417 fail (total 36'544). Deviations from the grammar as of [this version of the opening hours specification][opening-hours-grammar-specification] in all modes: @@ -19,8 +19,6 @@ In non-strict mode the following further differences are allowed: * AM and PM time specifications are allowed * holidays following weekdays * 24/7 rules with preceding selectors are corrected to 00:00-24:00 time spans - -The most common error that currently will cause an OH string not to be parsed is the use of "." instead of ":" in time specifications. Converting the data structures generated by parsing back to strings will result in correct data according to the specification.