From 3c47a7795c56ba12287587b708d6a2d8a54746cb Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Mon, 21 Aug 2023 22:31:44 +0200 Subject: [PATCH] Fix typo (#1969) --- docs/reference/scripting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/scripting.md b/docs/reference/scripting.md index c18bdc4bf..de649f9af 100644 --- a/docs/reference/scripting.md +++ b/docs/reference/scripting.md @@ -283,7 +283,7 @@ ways: - **Import items:** `{import "bar.typ": a, b}` \ Evaluates the file at the path `bar.typ`, extracts the values of the variables `a` and `b` (that need to be defined in `bar.typ`, e.g. through `{let}` - bindings) and defines them in the current file.Replacing `a, b` with `*` loads + bindings) and defines them in the current file. Replacing `a, b` with `*` loads all variables defined in a module. Instead of a path, you can also use a [module value]($type/module), as shown in