1
0
mirror of https://github.com/janet-lang/janet synced 2024-09-28 07:08:14 +00:00

Merge pull request #481 from sogaiu/remove-namespace-reference

Use "module" instead of "namespace" in docstring
This commit is contained in:
Calvin Rose 2020-10-07 17:43:56 -05:00 committed by GitHub
commit 7a601a7eb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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