diff options
author | Munyoki Kilyungi | 2023-07-19 14:58:27 +0300 |
---|---|---|
committer | BonfaceKilz | 2023-07-30 12:29:56 +0300 |
commit | 47a2707a4d5fa33f3d9339c43ef28e96b116ea37 (patch) | |
tree | cea13e5b79a2cf971b36f9127a361c29b39aeeb5 /examples | |
parent | 4e99bd1b99a239b43ba9aaa12e563cf774d7e68b (diff) | |
download | gn-transform-databases-47a2707a4d5fa33f3d9339c43ef28e96b116ea37.tar.gz |
Make 'inputs' and 'outputs' fields lists
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/dump-publication.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/dump-publication.scm b/examples/dump-publication.scm index 5d2cc9e..fc2e6d0 100755 --- a/examples/dump-publication.scm +++ b/examples/dump-publication.scm @@ -75,7 +75,7 @@ ("rdfs:" "<http://www.w3.org/2000/01/rdf-schema#>") ("rdf:" "<http://www.w3.org/1999/02/22-rdf-syntax-ns#>"))) (inputs - (dump-publication)) + (list dump-publication)) (outputs - (#:documentation "./docs/dump-publication.md" - #:rdf "./verified-data/dump-publication.md"))) + '(#:documentation "./docs/dump-publication.md" + #:rdf "./verified-data/dump-publication.md"))) |