Skip to content

Commit

Permalink
Fix documentation for #506
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi-asprino committed Oct 11, 2024
1 parent 2c255af commit aa5e770
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ An executable JAR can be obtained from the [Releases](https://github.com/spice-h
The jar can be executed as follows:

```
usage: java -jar sparql.anything-null -q query [-f <output format>] [-v
usage: java -jar sparql.anything-<version> -q query [-f <output format>] [-v
<filepath | name=value> ... ] [-c option=value] [-l path] [-o
filepath]
-q,--query <query> The path to the file storing the
Expand Down Expand Up @@ -588,7 +588,7 @@ usage: java -jar sparql.anything-null -q query [-f <output format>] [-v
Variables should start with '?' and
refer to bindings from the input
file. This option can only be used
in combination with 'values' and is
in combination with 'input' and is
ignored otherwise. This option
overrides 'output'.
-v,--values <values> OPTIONAL - Values passed as input
Expand All @@ -614,9 +614,7 @@ usage: java -jar sparql.anything-null -q query [-f <output format>] [-v
define them in the SERVICE IRI).
The argument can be passed multiple
times (one for each option to be
set). Options passed in this way
can be overwritten in the SERVICE
IRI or in the Basic Graph Pattern.
set).
```

Logging can be configured adding the following option (SLF4J).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ void init(){
.longOpt(VALUES_LONG).build());

options.addOption(Option.builder(CONFIGURATION).argName("option=value").hasArg(true).optionalArg(true).desc(
"OPTIONAL - Configuration to be passed to the SPARQL Anything engine (this is equivalent to define them in the SERVICE IRI). The argument can be passed multiple times (one for each option to be set). Options passed in this way can be overwritten in the SERVICE IRI or in the Basic Graph Pattern.")
"OPTIONAL - Configuration to be passed to the SPARQL Anything engine (this is equivalent to define them in the SERVICE IRI). The argument can be passed multiple times (one for each option to be set).")
.longOpt(CONFIGURATION_LONG).build());

// options.addOption(Option.builder(INPUT).argName("input").hasArg().desc(
Expand Down

0 comments on commit aa5e770

Please sign in to comment.