From 6cad4250b8a60b71e6a055b72e4496d83386ffe5 Mon Sep 17 00:00:00 2001 From: simonpoole Date: Thu, 6 Apr 2017 14:39:22 +0200 Subject: [PATCH] Fix a couple of doc issues. --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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.