Skip to content

Commit

Permalink
N3.Util isUri changed to isIRI
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Amsden committed Feb 15, 2016
1 parent 7fba743 commit 36fad66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ldp-service",
"version": "0.0.2",
"version": "0.0.4",
"description": "An Express middleware for LDP that uses MongoDB for persistence of JSON-LD resources",
"license": "Apache-2.0",
"main": "service.js",
Expand Down
2 changes: 1 addition & 1 deletion turtle.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ exports.parse = function(req, resourceURI, callback) {
callback(err);
} else if (triple) {
triple.subject = normalize(triple.subject);
if (N3.Util.isUri(triple.object)) {
if (N3.Util.isIRI(triple.object)) {
triple.object = normalize(triple.object);
}
triples.push(triple);
Expand Down

0 comments on commit 36fad66

Please sign in to comment.