diff options
Diffstat (limited to 'crates/typst-syntax/src')
| -rw-r--r-- | crates/typst-syntax/src/ast.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst-syntax/src/ast.rs b/crates/typst-syntax/src/ast.rs index df865906..6f4b52f0 100644 --- a/crates/typst-syntax/src/ast.rs +++ b/crates/typst-syntax/src/ast.rs @@ -1967,7 +1967,7 @@ impl<'a> ForLoop<'a> { } /// The expression to iterate over. - pub fn iter(self) -> Expr<'a> { + pub fn iterable(self) -> Expr<'a> { self.0 .children() .skip_while(|&c| c.kind() != SyntaxKind::In) |
