Spelling, Typos and Links per Ivan
authorGavin Carothers <gavin@carothers.name>
Fri, 22 Jun 2012 10:47:58 -0700
changeset 482 ca55645fc305
parent 481 32672d47af87
child 483 5362a261bb55
Spelling, Typos and Links per Ivan
rdf-turtle/index.html
--- a/rdf-turtle/index.html	Thu Jun 21 14:57:23 2012 -0700
+++ b/rdf-turtle/index.html	Fri Jun 22 10:47:58 2012 -0700
@@ -50,7 +50,7 @@
 	  edDraftURI:           "http://dvcs.w3.org/hg/rdf/raw-file/default/rdf-turtle/index.html",
 
 	  // if this is a LCWD, uncomment and set the end of its review period
-	  lcEnd: "2012-08-15",
+	  lcEnd: "2012-09-15",
 
 	  // if you want to have extra CSS, append them to this list
 	  // it is recommended that the respec.css stylesheet be kept
@@ -219,7 +219,7 @@
 		</section>
 		<section id="predicate-lists">
 			<h3>Predicate Lists</h3>
-			<p>Often the same subject will be refrenced by a number of predicates. The <a href="#grammar-production-predicateObjectList">predicateObjectList production</a> matches a series of predicates and objects, separated by <code>;</code>, following a subject.
+			<p>Often the same subject will be referenced by a number of predicates. The <a href="#grammar-production-predicateObjectList">predicateObjectList production</a> matches a series of predicates and objects, separated by <code>;</code>, following a subject.
 			  This expresses a series of RDF Triples with that subject and a each predicate and object allocated to one triple.
 			  Thus, the <code>;</code> symbol is used to repeat the subject of triples that vary only in predicate and object RDF terms.</p>
 			  <p>These two examples are equivalent ways of writing the triples about Spiderman.</p>
@@ -253,7 +253,7 @@
 			  of ways of writing each.
 			</p>
 
-			<section id="IRIs">
+			<section id="sec-iri">
 				<h3>IRIs</h3>
 
 				<p>
@@ -274,7 +274,7 @@
 				  	To write <code>http://www.perceive.net/schemas/relationship/enemyOf</code> using a prefixed name: </p>
 				  	<ol>
 				  		<li>Define a prefix label for the vocabulary IRI <code>http://www.perceive.net/schemas/relationship/</code> as <code>rel</code>
-			  			<li>Then write <code>rel:enemyOf</code> which is equalivate to writing <code>&lt;http://www.perceive.net/schemas/relationship/enemyOf></code></li>
+			  			<li>Then write <code>rel:enemyOf</code> which is equivalent to writing <code>&lt;http://www.perceive.net/schemas/relationship/enemyOf></code></li>
 			  		</ol>
 
 				  <pre class="example"><script type="text/turtle">@prefix rel: <http://www.perceive.net/schemas/relationship/> .
@@ -295,7 +295,7 @@
 				  </ul>
 				</div>
 
-				<p>The following Turtle document contains examples of all the diffrent ways of writting IRIs in Turtle.</p>
+				<p>The following Turtle document contains examples of all the different ways of writing IRIs in Turtle.</p>
 
 							<pre class="example"><script type="text/turtle"># A triple with all absolute IRIs
 <http://one.example/subject1> <http://one.example/predicate1> <http://one.example/object1> .
@@ -339,7 +339,7 @@
 				  The representation of the lexical form consists of a delimiting <code>"</code>, a sequence of characters matching the regular expression <code>[^\"\\\n\r]</code> or <a href="#numeric">numeric escape sequence</a> or <a href="#string">string escape sequence</a>, and a final delimiting <code>"</code>.
 				  The corresponding <a href="../rdf-concepts/index.html#dfn-lexical-form">RDF lexical form</a> is the characters between the <code>""</code>s, after processing any escape sequences.
 				  If present, the <a href="../rdf-concepts/index.html#dfn-language-tagged-string">language tag</a> is preceded by a <code>@</code>.
-				  If there is no language tag, there may be a <a href="../rdf-concepts/index.html#dfn-datatype-URI">datatype IRI</a>, preceeded by <code>^^</code>. The datatype IRI in Turtle may be written using either an <a href="#iri-summary">absolute IRI, a relative IRI or prefixed name</a>. If there is no datatype IRI and no language tag, the datatype is <code>xsd:string</code>.
+				  If there is no language tag, there may be a <a href="../rdf-concepts/index.html#dfn-datatype-URI">datatype IRI</a>, preceeded by <code>^^</code>. The datatype IRI in Turtle may be written using either an <a href="#sec-iri">absolute IRI, a relative IRI or prefixed name</a>. If there is no datatype IRI and no language tag, the datatype is <code>xsd:string</code>.
 				</p>
 
 				<p>
@@ -365,7 +365,7 @@
 				</section>
 				<section id="abbrev">
 				<h3>Numbers</h3>
-				<p>Numbers can be written with lexical form and datatype (Example: <code>"-5.0"^^xsd:decimal</code>) but Turtle has syntax for writing integer values, arbitrary precision decimal values, double precision floating point values and boolean values.</p>
+				<p>Numbers can be written with lexical form and datatype (Example: <code>"-5.0"^^xsd:decimal</code>) but Turtle has syntax for writing integer values, arbitrary precision decimal values, double precision floating point values.</p>
 				<table>
 					<thead>
 						<tr>