update examples to be less terse
authorGavin Carothers <gavin@carothers.name>
Wed, 13 Jul 2011 10:08:38 -0700
changeset 80 c7c66ef5c417
parent 79 9c9098d81aba
child 81 ad7a22e30a19
update examples to be less terse
rdf-turtle/index.html
--- 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>