summaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authormultisn8 <contact@multisamplednight.com>2023-05-19 14:38:34 +0200
committerGitHub <noreply@github.com>2023-05-19 14:38:34 +0200
commit9e1aeab3cd92a4fd4577986006653111c0ae5b95 (patch)
tree303b314d60f70d907d03e1fe5dcb162c485501bb /docs/src
parentaed0f1ce7de424a17a550f1376e7bfd6b8c9e5f6 (diff)
Fix broken link for "Let binding" (#1242)
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/reference/scripting.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/reference/scripting.md b/docs/src/reference/scripting.md
index 6af17cc7..cb48b52a 100644
--- a/docs/src/reference/scripting.md
+++ b/docs/src/reference/scripting.md
@@ -198,7 +198,7 @@ For loops can iterate over a variety of collections:
- `{for value in array {..}}` \
Iterates over the items in the [array]($type/array). The destructuring syntax
- described in [Let binding]($scripting/bindings) can also be used here.
+ described in [Let binding]($scripting/#bindings) can also be used here.
- `{for pair in dict {..}}` \
Iterates over the key-value pairs of the [dictionary]($type/dictionary).