From 9d66c9d697a947a3e5f6674fec8afebe15b23815 Mon Sep 17 00:00:00 2001 From: Scott Richmond Date: Sat, 15 Jun 2024 18:08:20 -0400 Subject: [PATCH] Bugfixes! --- src/doc.janet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc.janet b/src/doc.janet index 7eb4501..e73836c 100644 --- a/src/doc.janet +++ b/src/doc.janet @@ -45,7 +45,7 @@ (defn topic-entry [topic] (string "### " (capitalize topic) "\n" - (as-> topic _ (topics _) (slice _) (sort _) (map toc-entry _) + (as-> topic _ (topics _) (array/slice _) (sort _) (map toc-entry _) (string/join _ "    ")) "\n"))