diff options
author | David Robillard <d@drobilla.net> | 2018-06-03 10:55:32 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-06-03 10:55:32 +0200 |
commit | 87f396e32ea59f31a0ea0d10303dd6de88c923db (patch) | |
tree | b4bf28e655466d3b6d7a274c522c509e69434711 | |
parent | f27d84aec23f8b79fbf75064dbaf00ef0bb06892 (diff) | |
download | lv2-87f396e32ea59f31a0ea0d10303dd6de88c923db.tar.xz |
Fix pattern for xsd:double to make exponent optional
-rw-r--r-- | schemas.lv2/xsd.ttl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/schemas.lv2/xsd.ttl b/schemas.lv2/xsd.ttl index 7542636..46f6793 100644 --- a/schemas.lv2/xsd.ttl +++ b/schemas.lv2/xsd.ttl @@ -143,7 +143,7 @@ xsd:double rdfs:comment "IEEE double-precision 64-bit floating point." ; owl:withRestrictions ( [ - xsd:pattern "[+-]?[0-9]*\\.?[0-9]*([eE][-+]?[0-9]+)" + xsd:pattern "[+-]?[0-9]*\\.?[0-9]*([eE][-+]?[0-9]+)?" ] ) . |