diff options
| author | Marshall Lochbaum <mwlochbaum@gmail.com> | 2021-06-10 18:29:14 -0400 |
|---|---|---|
| committer | Marshall Lochbaum <mwlochbaum@gmail.com> | 2021-06-10 18:29:14 -0400 |
| commit | 060739d6e4ab74ec82ae0183a700f3aa014ee8a1 (patch) | |
| tree | bd8bd72fde79795228a397e0f166ced19d75d274 /doc | |
| parent | f3a61e8fd99d0af44b2a260ba4963fc4c60eba08 (diff) | |
Clarify
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/namespace.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/namespace.md b/doc/namespace.md index 0a78fa2e..fc7727df 100644 --- a/doc/namespace.md +++ b/doc/namespace.md @@ -2,7 +2,7 @@ # Namespaces -A namespace is a type of value that groups together several values (fields) from the same scope. A block or file returns a namespace if it contains any export arrows `⇐` at the top level, and fields from namespaces can be accessed with either dot syntax or destructuring assignment. A namespace that contains `↩` is mutable, so that its fields might change in value. +A namespace is a type of value that groups together several values (fields) from the same scope. A block or file returns a namespace if it contains any export arrows `⇐` at the top level, and fields from namespaces can be accessed with either dot syntax or destructuring assignment. A namespace can be mutable only if any of the code in it uses `↩` to change the value of a field. The following quick example shows a few ways to use a namespace returned by `•Import`: |
