Skip to content

Commit

Permalink
clarification of export list (#44744)
Browse files Browse the repository at this point in the history
* clarification of export list
Co-authored-by: Fredrik Ekre <ekrefredrik@gmail.com>
  • Loading branch information
stevengj authored Apr 2, 2022
1 parent 567ae8c commit 020c2de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/src/manual/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 020c2de

Please sign in to comment.