summaryrefslogtreecommitdiffstats
path: root/src/sordi.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-11-29 14:50:42 -0500
committerDavid Robillard <d@drobilla.net>2022-11-29 14:55:22 -0500
commitd4e84d46c4bd488f83e93fa38d96be8aa4ee0775 (patch)
treeb6e101ca873fd23ab7d19156caad89179d0cb3bd /src/sordi.c
parent676ce7d32d25cda0a60c8cad7a782e8f52391184 (diff)
downloadsord-d4e84d46c4bd488f83e93fa38d96be8aa4ee0775.tar.gz
sord-d4e84d46c4bd488f83e93fa38d96be8aa4ee0775.tar.bz2
sord-d4e84d46c4bd488f83e93fa38d96be8aa4ee0775.zip
Fix command line help interface of sord_validate
Diffstat (limited to 'src/sordi.c')
-rw-r--r--src/sordi.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sordi.c b/src/sordi.c
index ce5e4bf..05d8194 100644
--- a/src/sordi.c
+++ b/src/sordi.c
@@ -45,11 +45,11 @@ print_usage(const char* name, bool error)
fprintf(os, "Usage: %s [OPTION]... INPUT [BASE_URI]\n", name);
fprintf(os, "Load and re-serialise RDF data.\n");
fprintf(os, "Use - for INPUT to read from standard input.\n\n");
- fprintf(os, " -h Display this help and exit\n");
- fprintf(os, " -i SYNTAX Input syntax (`turtle' or `ntriples')\n");
- fprintf(os, " -o SYNTAX Output syntax (`turtle' or `ntriples')\n");
- fprintf(os, " -s INPUT Parse INPUT as string (terminates options)\n");
- fprintf(os, " -v Display version information and exit\n");
+ fprintf(os, " -h Display this help and exit.\n");
+ fprintf(os, " -i SYNTAX Input syntax (`turtle' or `ntriples').\n");
+ fprintf(os, " -o SYNTAX Output syntax (`turtle' or `ntriples').\n");
+ fprintf(os, " -s INPUT Parse INPUT as string (terminates options).\n");
+ fprintf(os, " -v Display version information and exit.\n");
return error ? 1 : 0;
}