aboutsummaryrefslogtreecommitdiffstats
path: root/schemas.lv2
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-06-03 10:55:32 +0200
committerDavid Robillard <d@drobilla.net>2018-06-03 10:55:32 +0200
commit87f396e32ea59f31a0ea0d10303dd6de88c923db (patch)
treeb4bf28e655466d3b6d7a274c522c509e69434711 /schemas.lv2
parentf27d84aec23f8b79fbf75064dbaf00ef0bb06892 (diff)
downloadlv2-87f396e32ea59f31a0ea0d10303dd6de88c923db.tar.xz
Fix pattern for xsd:double to make exponent optional
Diffstat (limited to 'schemas.lv2')
-rw-r--r--schemas.lv2/xsd.ttl2
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]+)?"
]
) .