1
0
mirror of https://github.com/janet-lang/janet synced 2024-09-28 23:10:40 +00:00

Remove unneeded string functions.

This commit is contained in:
Calvin Rose 2024-04-26 18:10:57 -05:00
parent 522a6cb435
commit 7c9157a0ed

View File

@ -3444,9 +3444,9 @@
(defn- print-special-form-entry (defn- print-special-form-entry
[x] [x]
(print "\n\n" (print "\n\n"
(string " special form\n\n") " special form\n\n"
(string " (" x " ...)\n\n") " (" x " ...)\n\n"
(string " See https://janet-lang.org/docs/specials.html\n\n"))) " See https://janet-lang.org/docs/specials.html\n\n"))
(defn doc* (defn doc*
"Get the documentation for a symbol in a given environment. Function form of `doc`." "Get the documentation for a symbol in a given environment. Function form of `doc`."