You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by sa...@apache.org on 2013/05/13 20:24:32 UTC

svn commit: r1482016 - /jena/site/trunk/content/tutorials/rdf_api.mdtext

Author: sallen
Date: Mon May 13 18:24:31 2013
New Revision: 1482016

URL: http://svn.apache.org/r1482016
Log:
JENA-452 Fix comment typo

Modified:
    jena/site/trunk/content/tutorials/rdf_api.mdtext

Modified: jena/site/trunk/content/tutorials/rdf_api.mdtext
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/tutorials/rdf_api.mdtext?rev=1482016&r1=1482015&r2=1482016&view=diff
==============================================================================
--- jena/site/trunk/content/tutorials/rdf_api.mdtext (original)
+++ jena/site/trunk/content/tutorials/rdf_api.mdtext Mon May 13 18:24:31 2013
@@ -364,8 +364,8 @@ acceptable.  To write large files and pr
 N-Triples format:</p>
 
 <blockquote>
-  <pre><code>// now write the model in XML form to a file
-model.write(System.out, "N-TRIPLE");
+  <pre><code>// now write the model in N-TRIPLES form to a file
+model.write(System.out, "N-TRIPLES");
   </code></pre>
 </blockquote>