From 020c2de5bd1198c97782615c4a3572706d0f4977 Mon Sep 17 00:00:00 2001 From: "Steven G. Johnson" Date: Sat, 2 Apr 2022 10:51:09 -0400 Subject: [PATCH] clarification of export list (#44744) * clarification of export list Co-authored-by: Fredrik Ekre --- doc/src/manual/modules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/manual/modules.md b/doc/src/manual/modules.md index c3f3dab789c4b..c6009594bea2d 100644 --- a/doc/src/manual/modules.md +++ b/doc/src/manual/modules.md @@ -78,7 +78,7 @@ module-local. ### Export lists Names (referring to functions, types, global variables, and constants) can be added to the -*export list* of a module with `export`. Typically, they are at or near the top of the module definition +*export list* of a module with `export`: these are the symbols that are imported when `using` the module. Typically, they are at or near the top of the module definition so that readers of the source code can find them easily, as in ```jldoctest module_manual