Rephrase the sentence on variable scope in Scripting documentation (#4250)

This commit is contained in:
Malo 2024-05-25 17:34:01 +02:00 committed by GitHub
parent 1fff04f582
commit 4929262610
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -68,8 +68,9 @@ As already demonstrated above, variables can be defined with `{let}` bindings.
The variable is assigned the value of the expression that follows the `=` sign. The variable is assigned the value of the expression that follows the `=` sign.
The assignment of a value is optional, if no value is assigned, the variable The assignment of a value is optional, if no value is assigned, the variable
will be initialized as `{none}`. The `{let}` keyword can also be used to create will be initialized as `{none}`. The `{let}` keyword can also be used to create
a [custom named function]($function/#defining-functions). Let bindings can be a [custom named function]($function/#defining-functions). Variables can be
accessed for the rest of the containing block or document. accessed for the rest of the containing block (or the rest of the file if there
is no containing block).
```example ```example
#let name = "Typst" #let name = "Typst"