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

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


The following commit(s) were added to refs/heads/main by this push:
     new 0013ae6261 GH-2411 Clarify arq help
0013ae6261 is described below

commit 0013ae62617b2fb076f2c4070e77635cad374838
Author: Erich Bremer <[email protected]>
AuthorDate: Thu May 22 14:09:34 2025 -0400

    GH-2411 Clarify arq help
    
    clarifications in help text
    type
---
 jena-cmds/src/main/java/arq/cmdline/ModDatasetGeneral.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/jena-cmds/src/main/java/arq/cmdline/ModDatasetGeneral.java 
b/jena-cmds/src/main/java/arq/cmdline/ModDatasetGeneral.java
index 4dcde96135..090932ae04 100644
--- a/jena-cmds/src/main/java/arq/cmdline/ModDatasetGeneral.java
+++ b/jena-cmds/src/main/java/arq/cmdline/ModDatasetGeneral.java
@@ -53,13 +53,13 @@ public class ModDatasetGeneral extends ModDataset
         cl.getUsage().startCategory("Dataset") ;
         cl.add(dataDecl,
                "--data=FILE",
-               "Data for the dataset - triple or quad formats") ;
+               "Data for the dataset - triple or quad formats.  --data can be 
used for multiple times in the same command. FILE can be a URL (http/https)") ;
         cl.add(graphDecl,
                "--graph=FILE",
-               "Graph for default graph of the datset") ;
+               "Graph for default graph of the dataset. FILE can be a URL 
(http/https)") ;
         cl.add(namedGraphDecl,
                "--namedGraph=FILE",
-               "Add a graph into the dataset as a named graph");
+               "Add a graph into the dataset as a named graph.  --namedGraph 
can be used multiple times in the same command.  FILE in this case can only be 
a file, not a URL.  It will be called <FILE> even if a local path of 
/data/sub1/FILE");
     }
 
     @Override

Reply via email to