You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2020/11/03 21:07:16 UTC

[jena-site] branch master updated: Update streaming-io.md

This is an automated email from the ASF dual-hosted git repository.

andy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jena-site.git


The following commit(s) were added to refs/heads/master by this push:
     new a1ae10e  Update streaming-io.md
     new 24c7c85  Merge pull request #27 from LorenzBuehmann/patch-1
a1ae10e is described below

commit a1ae10eeb9dc688c2acec04fba9e6e4c349fc12d
Author: Lorenz Bühmann <bu...@informatik.uni-leipzig.de>
AuthorDate: Tue Oct 13 10:37:05 2020 +0200

    Update streaming-io.md
    
    Update necessary due to renaming of StreamOps to StreamRDFOps
---
 source/documentation/io/streaming-io.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/source/documentation/io/streaming-io.md b/source/documentation/io/streaming-io.md
index 84c2eb4..dc866d8 100644
--- a/source/documentation/io/streaming-io.md
+++ b/source/documentation/io/streaming-io.md
@@ -45,7 +45,7 @@ and also parser events for prefix settings and base URI declarations.
 There are utilities to help:
 
 * [`StreamRDFLib`](/documentation/javadoc/arq/org/apache/jena/riot/system/StreamRDFLib.html) &ndash; create `StreamRDF` objects
-* [`StreamOps`](/documentation/javadoc/arq/org/apache/jena/riot/system/StreamOps.html) &ndash; helpers for sending RDF data to `StreamRDF` objects
+* [`StreamRDFOps`](/documentation/javadoc/arq/org/apache/jena/riot/system/StreamRDFOps.html) &ndash; helpers for sending RDF data to `StreamRDF` objects
 
 ## Reading data
 
@@ -87,7 +87,7 @@ an `StreamRDF` backed by a stream-based writer
 which can be done as:
 
     StreamRDF writer = StreamRDFWriter.getWriterStream(output, lang) ;
-    StreamOps.graphToStream(writer, model.getGraph()) ;
+    StreamRDFOps.graphToStream(writer, model.getGraph()) ;
 
 N-Triples and N-Quads are always written as a stream.