Fix broken link for "Let binding" (#1242)

This commit is contained in:
multisn8 2023-05-19 14:38:34 +02:00 committed by GitHub
parent aed0f1ce7d
commit 9e1aeab3cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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).