You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by ki...@apache.org on 2016/10/08 12:33:31 UTC

svn commit: r1763896 - /jena/site/trunk/content/documentation/query/spatial-query.mdtext

Author: kinow
Date: Sat Oct  8 12:33:31 2016
New Revision: 1763896

URL: http://svn.apache.org/viewvc?rev=1763896&view=rev
Log:
Fix minor typos

Modified:
    jena/site/trunk/content/documentation/query/spatial-query.mdtext

Modified: jena/site/trunk/content/documentation/query/spatial-query.mdtext
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/query/spatial-query.mdtext?rev=1763896&r1=1763895&r2=1763896&view=diff
==============================================================================
--- jena/site/trunk/content/documentation/query/spatial-query.mdtext (original)
+++ jena/site/trunk/content/documentation/query/spatial-query.mdtext Sat Oct  8 12:33:31 2016
@@ -154,7 +154,7 @@ See [ESRIs docs on spatial relations](ht
 
 ## Spatial Dataset Assembler
 
-The usual way to describe an index is with a [Jena assembler description](http://jena.apache.org/documentation/assembler/index.html). Configurations can also be built with [code](#how-to-use-it-by-code). The assembler describes a "spaital dataset" which has an underlying RDF dataset and a spatial index. The spatial index describes the spatial index technology (Lucene or Solr) and the details needed for for each.
+The usual way to describe an index is with a [Jena assembler description](http://jena.apache.org/documentation/assembler/index.html). Configurations can also be built with [code](#how-to-use-it-by-code). The assembler describes a "spatial dataset" which has an underlying RDF dataset and a spatial index. The spatial index describes the spatial index technology (Lucene or Solr) and the details needed for each.
 
 A spatial index has an 
 [EntityDefinition](https://github.com/apache/jena/tree/master/jena-spatial/src/main/java/org/apache/jena/query/spatial/EntityDefinition.java)
@@ -192,7 +192,7 @@ The following is an example of a TDB dat
     
     :spatial_dataset rdf:type     spatial:SpatialDataset ;
         spatial:dataset   <#dataset> ;
-        ##spaital:index   <#indexSolr> ;
+        ##spatial:index   <#indexSolr> ;
         spatial:index     <#indexLucene> ;
         .
     
@@ -227,7 +227,7 @@ then use code such as:
     Dataset spatialDataset = DatasetFactory.assemble( "spatial-config.ttl", 
         "http://localhost/jena_example/#spatial_dataset") ;
 
-Key here is that the assembler contains two dataset definitions, one for the spatial dataset, one for the base data. Therefore, the application needs to identify the text dataset by it's URI 'http://localhost/jena_example/#spatial_dataset'.
+Key here is that the assembler contains two dataset definitions, one for the spatial dataset, one for the base data. Therefore, the application needs to identify the text dataset by its URI 'http://localhost/jena_example/#spatial_dataset'.
 
 ## Working with Solr