Repository: jena Updated Branches: refs/heads/master d2ee4712d -> 70e0a4f80
Typos Project: http://git-wip-us.apache.org/repos/asf/jena/repo Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/0af66167 Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/0af66167 Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/0af66167 Branch: refs/heads/master Commit: 0af661672129f9ac32d11cc27330e7e035859677 Parents: d2ee471 Author: Andy Seaborne <a...@apache.org> Authored: Wed Dec 10 13:50:59 2014 +0000 Committer: Andy Seaborne <a...@apache.org> Committed: Wed Dec 10 13:50:59 2014 +0000 ---------------------------------------------------------------------- .../src/main/java/com/hp/hpl/jena/sparql/expr/NodeValue.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jena/blob/0af66167/jena-arq/src/main/java/com/hp/hpl/jena/sparql/expr/NodeValue.java ---------------------------------------------------------------------- diff --git a/jena-arq/src/main/java/com/hp/hpl/jena/sparql/expr/NodeValue.java b/jena-arq/src/main/java/com/hp/hpl/jena/sparql/expr/NodeValue.java index 0ac2186..6f1e0b3 100644 --- a/jena-arq/src/main/java/com/hp/hpl/jena/sparql/expr/NodeValue.java +++ b/jena-arq/src/main/java/com/hp/hpl/jena/sparql/expr/NodeValue.java @@ -801,13 +801,13 @@ public abstract class NodeValue extends ExprNode x = StrUtils.strCompare(node1.getLiteralLexicalForm(), node2.getLiteralLexicalForm()) ; if ( x != Expr.CMP_EQUAL ) return x ; - // Same lexcial forms, same lang tag by value + // Same lexical forms, same lang tag by value // Try to split by syntactic lang tags. x = StrUtils.strCompare(node1.getLiteralLanguage(), node2.getLiteralLanguage()) ; // Maybe they are the same after all! // Should be node.equals by now. if ( x == Expr.CMP_EQUAL && ! NodeFunctions.sameTerm(node1, node2) ) - throw new ARQInternalErrorException("Look the same (lang tags) but no node equals") ; + throw new ARQInternalErrorException("Looks like the same (lang tags) but not node equals") ; return x ; }