From f4700b6dcba03aff63afdcfe4c42aba95d4a6f15 Mon Sep 17 00:00:00 2001 From: Tpt Date: Thu, 17 May 2018 22:11:57 +0200 Subject: [PATCH] Fixes a small evaluation error --- src/rio/turtle/turtle_grammar.rustpeg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rio/turtle/turtle_grammar.rustpeg b/src/rio/turtle/turtle_grammar.rustpeg index 0a09c1ad..578e1eaa 100644 --- a/src/rio/turtle/turtle_grammar.rustpeg +++ b/src/rio/turtle/turtle_grammar.rustpeg @@ -148,7 +148,7 @@ BlankNode -> BlankNode = ANON { data_factory.new_blank_node() } //[18] -IRIREF -> String = "<" _ i:((_IRIREF_simple_char / UCHAR)*) _ ">" { +IRIREF -> String = "<" i:((_IRIREF_simple_char / UCHAR)*) ">" { //TODO: relative URIs resolution i.into_iter().collect() }