You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2012/11/27 11:24:24 UTC

svn commit: r1414084 - /jena/site/trunk/content/documentation/query/property_paths.mdtext

Author: andy
Date: Tue Nov 27 10:24:23 2012
New Revision: 1414084

URL: http://svn.apache.org/viewvc?rev=1414084&view=rev
Log:
Try to fix markdown and use of literal |

Modified:
    jena/site/trunk/content/documentation/query/property_paths.mdtext

Modified: jena/site/trunk/content/documentation/query/property_paths.mdtext
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/query/property_paths.mdtext?rev=1414084&r1=1414083&r2=1414084&view=diff
==============================================================================
--- jena/site/trunk/content/documentation/query/property_paths.mdtext (original)
+++ jena/site/trunk/content/documentation/query/property_paths.mdtext Tue Nov 27 10:24:23 2012
@@ -1,8 +1,7 @@
-ARQ - Property Paths
 # ARQ - Property Paths
 
 A property path is a possible route through a graph between two
-graph nodes.  A trivial case if a property path of length exactly
+graph nodes.  A trivial case is a property path of length exactly
 one, which is a triple pattern.
 
 Most property paths are now legal SPARQL 1.1 syntax, there are some advanced property 
@@ -20,7 +19,7 @@ pattern, then this duplication is preser
 
 Path example | Meaning
 ------------ | -------
-`dc:title | rdfs:label` | Dublin Core title or an RDFS label.
+`dc:title` | `rdfs:label` | Dublin Core title or an RDFS label.
 `foaf:knows/foaf:name` | Name of people one "knows" steps away.
 `foaf:knows/foaf:knows/foaf:name` | Name of people two "knows" steps away.
 
@@ -34,7 +33,7 @@ Syntax Form | Matches
 *`(elt)`* | A group path *`elt`*, brackets control precedence.
 *`elt1 / elt2`* | A sequence path of *`elt1`*, followed by *`elt2`*
 *`elt1 ^ elt2`* | Shorthand for `<i>elt1 / ^elt2</i>`, that is *`elt1`* followed by reverse *`elt2`*.
-*`elt1 | elt2`* | A alternative path of *`elt1`*, or `<i>elt2</i>` (all possibilities are tried)
+*`elt1 &#124; elt2`* | A alternative path of *`elt1`*, or `<i>elt2</i>` (all possibilities are tried)
 *`elt*`* | A path of zero or more occurrences of *`elt`*.
 *`elt+`* | A path of one or more occurrences of *`elt`*.
 *`elt?`* | A path of zero or one *`elt`*.