From 9e1aeab3cd92a4fd4577986006653111c0ae5b95 Mon Sep 17 00:00:00 2001 From: multisn8 Date: Fri, 19 May 2023 14:38:34 +0200 Subject: [PATCH] Fix broken link for "Let binding" (#1242) --- docs/src/reference/scripting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/reference/scripting.md b/docs/src/reference/scripting.md index 6af17cc78..cb48b52ad 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).