From 7c9157a0edf41cc5c2127a32e1593d9f9b80d9fc Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Fri, 26 Apr 2024 18:10:57 -0500 Subject: [PATCH] Remove unneeded `string` functions. --- src/boot/boot.janet | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/boot/boot.janet b/src/boot/boot.janet index f5169a54..feab392f 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -3444,9 +3444,9 @@ (defn- print-special-form-entry [x] (print "\n\n" - (string " special form\n\n") - (string " (" x " ...)\n\n") - (string " See https://janet-lang.org/docs/specials.html\n\n"))) + " special form\n\n" + " (" x " ...)\n\n" + " See https://janet-lang.org/docs/specials.html\n\n")) (defn doc* "Get the documentation for a symbol in a given environment. Function form of `doc`."