Skip to content

Commit

Permalink
Align escape tests to community consensus
Browse files Browse the repository at this point in the history
  • Loading branch information
afs committed Nov 20, 2022
1 parent 642c29d commit c8068c4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion sparql11/data-r2/syntax-sparql2/syntax-esc-04.rq
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
PREFIX : <http://example/>
SELECT *
WHERE { <\u0078> :\u0070 ?xx\u0078 }
## Community: \ u escapes in URIs and strings only.
## U+0078 is 'x'
WHERE { <\u0078> :p "xx\u0078" }
4 changes: 2 additions & 2 deletions sparql11/data-r2/syntax-sparql2/syntax-esc-05.rq
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PREFIX : <http://example/>
SELECT *
# Comments can contain \ u
## Community: \ u escapes in URIs and strings only.
# <\u0078> :\u0070 ?xx\u0078
WHERE { <\u0078> :\u0070 ?xx\u0078 }
WHERE { <\u0078> :p "xx\u0078" }

0 comments on commit c8068c4

Please sign in to comment.