1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-16 10:19:55 +00:00

Use "module" instead of "namespace" in docstring

This commit is contained in:
sogaiu 2020-10-07 18:18:28 +09:00
parent ebfa07f8ce
commit 9ec66ab826

View File

@ -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)))