Clone URL (Committers only):
https://cms.apache.org/redirect?new=anonymous;action=diff;uri=http://jena.apache.org/tutorials%2Frdf_api.mdtext

bibithink

Index: trunk/content/tutorials/rdf_api.mdtext
===================================================================
--- trunk/content/tutorials/rdf_api.mdtext      (revision 1655891)
+++ trunk/content/tutorials/rdf_api.mdtext      (working copy)
@@ -904,10 +904,9 @@
           public boolean selects(Statement s) {
               return (subject == null   || s.getSubject().equals(subject))
                   && (predicate == null || 
s.getPredicate().equals(predicate))
-                  && (object == null    || 
s.getObject().equals(object))
+                  && (object == null    || 
s.getObject().equals(object));
           }
-     }
- });</code></pre>
+     });</code></pre>
 </blockquote>
 
 <p>is equivalent to:</p>
@@ -1164,7 +1163,7 @@
 literals the strings must be equal.  XML literals have two notions of
 equality.  The simple notion is that the conditions previously mentioned are
 true and the strings are also equal.  The other notion is that they can be
-equal if the cannonicalization of their strings is equal.</p>
+equal if the canonicalization of their strings is equal.</p>
 
 <p>Jena's interfaces also support typed literals. The old-fashioned way
 (shown below) treats typed literals as shorthand for strings: typed

Reply via email to