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 2021/01/01 11:10:25 UTC

[jena-site] branch master updated: Fix example link

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 a2ca278  Fix example link
a2ca278 is described below

commit a2ca2787b5607d0bbcacc9a6e9f0fc445eae4325
Author: Andy Seaborne <an...@apache.org>
AuthorDate: Fri Jan 1 11:08:04 2021 +0000

    Fix example link
---
 source/documentation/io/rdf-output.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/source/documentation/io/rdf-output.md b/source/documentation/io/rdf-output.md
index b425918..6426c71 100644
--- a/source/documentation/io/rdf-output.md
+++ b/source/documentation/io/rdf-output.md
@@ -429,7 +429,7 @@ The preferred style is to use `RDFDataMgr`:
 Additionally, a single model can be written in a dataset format - it becomes
 the default graph of the dataset.
     
-    Model m = 
+    Model m = ... ;
     RDFDataMgr.write(System.out, m, Lang.TRIG) ;
 
 might give:
@@ -452,7 +452,7 @@ might give:
 ### Adding a new output format
 
 A complete example of adding a new output format is given in the example file: 
-[RIOT Output example 3](https://github.com/apache/jena/tree/master/jena-arq/src-examples/arq/examples/riot/ExRIOT_out3.java)
+[RIOT Output example 7](https://github.com/apache/jena/blob/master/jena-arq/src-examples/arq/examples/riot/ExRIOT7_AddNewWriter.java).
 
 ## Notes {#notes}