--- a/ldpatch.html Mon Nov 24 13:55:17 2014 -0500
+++ b/ldpatch.html Mon Nov 24 14:05:57 2014 -0500
@@ -292,15 +292,15 @@
profile:image <https://example.org/timbl.jpg> .
} .
-Bind ?workLocation <#>/schema:workLocation .
+Bind ?workLocation <#> / schema:workLocation .
Cut ?workLocation .
UpdateList <#> ex:preferredLanguages 1..2 ( "fr-CH" ) .
-Bind ?event <#>/schema:attendee[/schema:url=<https://www.w3.org/2012/ldp/wiki/F2F5>] .
+Bind ?event <#> / schema:attendee[ / schema:url = <https://www.w3.org/2012/ldp/wiki/F2F5> ] .
Add { ?event rdf:type schema:Event } .
-Bind ?ted <http://conferences.ted.com/TED2009/>/^schema:url! .
+Bind ?ted <http://conferences.ted.com/TED2009/> / ^schema:url ! .
Delete { ?ted schema:startDate "2009-02-04" } .
Add {
?ted schema:location [
@@ -471,7 +471,7 @@
<p>
The following path expression (taken from the <a href="#examples">Examples section</a>) will look for all events matching the predicate <code>schema:performerIn</code>, keeping only the one matching the IRI <code><https://www.w3.org/2012/ldp/wiki/F2F5></code>.
<pre class='example'>
-/schema:performerIn[/schema:url = <https://www.w3.org/2012/ldp/wiki/F2F5>]
+/ schema:performerIn [ / schema:url = <https://www.w3.org/2012/ldp/wiki/F2F5> ]
</pre>
</p>
@@ -501,9 +501,9 @@
</p>
<p>
- Following the example above, the <a>Bind</a> operation creates a new variable called <code>event</code>, starting from the RDF Term <code><#></code> and following the path expression <code>/schema:performerIn[/schema:url = <https://www.w3.org/2012/ldp/wiki/F2F5>]</code> in order to identify the RDF Term to which this variable will be bound to – i.e. <code>_:b2</code> in the <a>target graph</a>.
+ Following the example above, the <a>Bind</a> operation creates a new variable called <code>event</code>, starting from the RDF Term <code><#></code> and following the path expression <code>/ schema:performerIn [ / schema:url = <https://www.w3.org/2012/ldp/wiki/F2F5> ]</code> in order to identify the RDF Term to which this variable will be bound to – i.e. <code>_:b2</code> in the <a>target graph</a>.
<pre class='example'>
-Bind ?event <#>/schema:performerIn[/schema:url=<https://www.w3.org/2012/ldp/wiki/F2F5>] .
+Bind ?event <#> / schema:performerIn [ / schema:url = <https://www.w3.org/2012/ldp/wiki/F2F5> ] .
</pre>
</p>