diff options
author | Munyoki Kilyungi | 2023-07-18 16:26:59 +0300 |
---|---|---|
committer | BonfaceKilz | 2023-07-30 12:29:56 +0300 |
commit | 5e4b70b286a155296e8efa6e4a3c01e5306e61ed (patch) | |
tree | 227b59f1b4346de5bceb0e7bb4aca17e80631f99 /dump | |
parent | dfa1e64260d08cae88beb210569a5d0e231dc040 (diff) | |
download | gn-transform-databases-5e4b70b286a155296e8efa6e4a3c01e5306e61ed.tar.gz |
Convert symbol to a string when show-casing triples in doc
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'dump')
-rw-r--r-- | dump/special-forms.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dump/special-forms.scm b/dump/special-forms.scm index cf591e9..738c48c 100644 --- a/dump/special-forms.scm +++ b/dump/special-forms.scm @@ -476,7 +476,10 @@ The above query results to triples that have the form: ((predicate . object) (format #t "~a -> ~a -> ~a ~%" #,(field->datum #'subject) - predicate object))) + predicate + (if (symbol? object) + (symbol->string object) + object)))) (map-alist '() #,@(field->datum #'(predicate-clauses ...)))) |