Skip to content

Commit 5bdd162

Browse files
committed
Fix URI syntax
1 parent ea3ae69 commit 5bdd162

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sparql/sparql12/lang-basedir/strlang.rq

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ SELECT
44
( STRLANG("abc", "en") AS ?term1 )
55
( STRLANG("abc", "") AS ?term2 )
66
( STRLANG(123, "en") AS ?term3 )
7-
( STRLANG(<http:/example/x> , "en") AS ?term4 )
7+
( STRLANG(<http://example/x> , "en") AS ?term4 )
88
WHERE {}

sparql/sparql12/lang-basedir/strlangdir.rq

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ SELECT
88
( STRLANGDIR("abc", "en", "") AS ?term5 )
99
( STRLANGDIR("abc", "", "ltr") AS ?term6 )
1010
( STRLANGDIR(123, "", "ltr") AS ?term7 )
11-
( STRLANGDIR(<http:/example/x>, "en", "ltr") AS ?term8 )
11+
( STRLANGDIR(<http://example/x>, "en", "ltr") AS ?term8 )
1212
WHERE {}

0 commit comments

Comments
 (0)