From 9ec66ab8264a119ee30e8ee2bdddb433d8015a6a Mon Sep 17 00:00:00 2001 From: sogaiu <983021772@users.noreply.github.com> Date: Wed, 7 Oct 2020 18:18:28 +0900 Subject: [PATCH] Use "module" instead of "namespace" in docstring --- src/boot/boot.janet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boot/boot.janet b/src/boot/boot.janet index 636f2b24..f252196e 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -2488,7 +2488,7 @@ (tuple import* (string path) ;argm)) (defmacro use - "Similar to import, but imported bindings are not prefixed with a namespace + "Similar to import, but imported bindings are not prefixed with a module identifier. Can also import multiple modules in one shot." [& modules] ~(do ,;(map |~(,import* ,(string $) :prefix "") modules)))