You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by aj...@apache.org on 2018/01/03 20:10:18 UTC

svn commit: r1820004 - /jena/site/trunk/content/documentation/query/construct-quad.mdtext

Author: ajs6f
Date: Wed Jan  3 20:10:18 2018
New Revision: 1820004

URL: http://svn.apache.org/viewvc?rev=1820004&view=rev
Log:
two typos

Modified:
    jena/site/trunk/content/documentation/query/construct-quad.mdtext

Modified: jena/site/trunk/content/documentation/query/construct-quad.mdtext
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/query/construct-quad.mdtext?rev=1820004&r1=1820003&r2=1820004&view=diff
==============================================================================
--- jena/site/trunk/content/documentation/query/construct-quad.mdtext (original)
+++ jena/site/trunk/content/documentation/query/construct-quad.mdtext Wed Jan  3 20:10:18 2018
@@ -81,7 +81,7 @@ The method of `execConstructQuads()` ret
 But `execConstructDataset()` constructs the desired Dataset object with only unique `Quad`s.
 
 In order to use these methods, it's required to switch on the query syntax
-of ARQ before head, when creating the `Query` object:
+of ARQ beforehand, when creating the `Query` object:
     
     Query query = QueryFactory.create(queryString, Syntax.syntaxARQ);
 
@@ -101,7 +101,7 @@ on the default graph. For instance:
     String queryString = "CONSTRUCT { ?s ?p ?o . GRAPH ?g1 { ?s1 ?p1 ?o1 } } WHERE ..."
     ...
     // The part of "GRAPH ?g1 { ?s1 ?p1 ?o1 }" will be ignored. Only "?s ?p ?o" in the default graph will be returned.
-    Iterator<Triple> triples = qexec.exeConstructTriples();
+    Iterator<Triple> triples = qexec.execConstructTriples();
 
 More examples can be found at `ExampleConstructQuads.java` under `jena-arq/src-examples`