summaryrefslogtreecommitdiff
path: root/src/syntax/ast.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax/ast.rs')
-rw-r--r--src/syntax/ast.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax/ast.rs b/src/syntax/ast.rs
index 6e55d106..7d5e2989 100644
--- a/src/syntax/ast.rs
+++ b/src/syntax/ast.rs
@@ -178,7 +178,7 @@ pub enum Expr {
While(WhileLoop),
/// A for loop: `for x in y { z }`.
For(ForLoop),
- /// A module import: `import a, b, c from "utils.typ"`.
+ /// A module import: `import "utils.typ": a, b, c`.
Import(ModuleImport),
/// A module include: `include "chapter1.typ"`.
Include(ModuleInclude),