Skip to content

Commit

Permalink
Fix call to resolve blank function
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleysommer committed Sep 6, 2015
1 parent c5c4de3 commit 75351ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/query_engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ QueryEngine.prototype.normalizeTerm = function(term, env, shouldIndex, callback)
} else {
// should never get here...
// is resolveBlank useful?
this.lexicon.resolveBlank(function(oid) {
this.lexicon.resolveBlank(label, function(oid) {
env.blanks[label] = oid;
callback(oid);
});
Expand Down

0 comments on commit 75351ce

Please sign in to comment.