Fix numeric parsing

Julien LepillerWed Apr 01 23:49:49+0200 2020

bc76393

Fix numeric parsing

turtle/parser.scm

178178
(define-peg-pattern collection all
179179
  (and (ignore "(") WS (* (and object WS)) (ignore ")")))
180180
;; [16] 	NumericLiteral 	::= 	INTEGER | DECIMAL | DOUBLE
181-
(define-peg-pattern numeric-literal all (or integer decimal double))
181+
(define-peg-pattern numeric-literal all (or double decimal integer))
182182
;; [128s] 	RDFLiteral 	::= 	String (LANGTAG | '^^' iri)?
183183
(define-peg-pattern rdf-literal all
184184
  (and string-pat WS (? (or langtag (and "^^" WS iri)))))