aboutsummaryrefslogtreecommitdiff
path: root/doc/fromJ.md
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2021-07-18 17:53:37 -0400
committerMarshall Lochbaum <mwlochbaum@gmail.com>2021-07-18 17:53:37 -0400
commit7e0e38bd155fab76fa3b6776f9184611d044903d (patch)
tree9cbd13e8aae249cb97b1dd2b22a084817093890c /doc/fromJ.md
parentbbecd676b7c127fead3ef172bbae3ddf2fb7f19a (diff)
Finish lexical scope documentation
Diffstat (limited to 'doc/fromJ.md')
-rw-r--r--doc/fromJ.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/fromJ.md b/doc/fromJ.md
index af93e75e..3e1abbce 100644
--- a/doc/fromJ.md
+++ b/doc/fromJ.md
@@ -45,7 +45,7 @@ In J, the part of speech is an inherent property of a value, while in BQN it is
| `[:` | `·` | Cap
| `assert.` | `!` |
-BQN's explicit functions and modifiers are called "blocks", and have a more sophisticated syntax than J; see [the documentation](block.md). BQN uses lexical scope, and has no global variables. BQN also has a [list notation](syntax.md#list-notation) using `⟨⟩`.
+BQN's explicit functions and modifiers are called "blocks", and have a more sophisticated syntax than J; see [the documentation](block.md). BQN uses [lexical scope](lexical.md), and has no global variables. BQN also has a [list notation](syntax.md#list-notation) using `⟨⟩`.
## For reading