--- a/rdf-turtle/index.html Wed Jul 13 09:54:42 2011 -0700
+++ b/rdf-turtle/index.html Wed Jul 13 10:08:38 2011 -0700
@@ -395,22 +395,20 @@
<p>The <code>,</code> symbol may be used to repeat the subject and
predicate of triples that only differ in the object RDF term.</p>
-
<pre class="example"><script type="text/turtle">
# this is not a complete turtle document
-:a :b :c ,
- :d .
-# the last triple is :a :b :d .
+:subject :predicate :object1 ,
+ :object2 .
+# creates two triples, the last triple is :subject :predicate :object2 .
</script></pre>
<p>The <code>;</code> symbol may be used to repeat the subject of
- of triples that vary only in predicate and object RDF terms.</p>
-
+ triples that vary only in predicate and object RDF terms.</p>
<pre class="example"><script type="text/turtle">
# this is not a complete turtle document
-:a :b :c ;
-:d :e .
-# the last triple is :a :d :e .
+:subject :predicate1 :obj1 ;
+:predicate2 :obj2 .
+# creates two triples, the last triple is :subject :predicate2 :obj2 .
</script></pre>
</section>