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 2023/01/03 10:19:35 UTC

[jena-site] branch main updated: GH-1592 change ShexMap to ShapeMap

This is an automated email from the ASF dual-hosted git repository.

andy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/jena-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 9dd506718 GH-1592 change ShexMap to ShapeMap
9dd506718 is described below

commit 9dd506718a2dd51db4b7896be69d2c1182605be9
Author: Eric Prud'hommeaux <er...@w3.org>
AuthorDate: Fri Oct 28 12:50:41 2022 +0200

    GH-1592 change ShexMap to ShapeMap
    
    Change `ShexMap` type in documentation examples to `ShapeMap`
    Accompanies jena#1589
---
 source/documentation/shex/__index.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/source/documentation/shex/__index.md b/source/documentation/shex/__index.md
index e7b1106ae..16b794e26 100644
--- a/source/documentation/shex/__index.md
+++ b/source/documentation/shex/__index.md
@@ -30,8 +30,8 @@ argument.
 
 To validate:
 
-<pre>shex validate --schema SCHEMA.shex --map MAP.shexmap --data DATA.ttl</pre>
-<pre>shex v -s SCHEMA.shex -m MAp.shexmap -d data.ttl</pre>
+<pre>shex validate --schema SCHEMA.shex --map MAP.smap --data DATA.ttl</pre>
+<pre>shex v -s SCHEMA.shex -m MAP.smap -d data.ttl</pre>
 
 To parse a file:
 
@@ -73,7 +73,7 @@ https://github.com/apache/jena/tree/main/jena-examples/src/main/java/shex/exampl
 
         // Shapes map.
         System.out.println("Read shapes map");
-        ShexMap shapeMap = Shex.readShapeMap(SHAPES_MAP);
+        ShapeMap shapeMap = Shex.readShapeMap(SHAPES_MAP);
 
         // ShexReport
         System.out.println("Validate");