diff options
| author | Laurenz <laurmaedje@gmail.com> | 2024-12-17 10:25:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-17 09:25:27 +0000 |
| commit | 134638525516995d5947c5b3f98ffbc13784a143 (patch) | |
| tree | 549d3ed3b5a4eac66b585314e772fda092058021 /crates/typst-syntax/src/parser.rs | |
| parent | ed67220e4b5ae6b3a1bc50f59bd52b5b1dea3a6b (diff) | |
Rename `pattern` to `tiling` (#5590)
Diffstat (limited to 'crates/typst-syntax/src/parser.rs')
| -rw-r--r-- | crates/typst-syntax/src/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst-syntax/src/parser.rs b/crates/typst-syntax/src/parser.rs index cb5e2dd8..6c1778c4 100644 --- a/crates/typst-syntax/src/parser.rs +++ b/crates/typst-syntax/src/parser.rs @@ -1077,7 +1077,7 @@ fn expr_with_paren(p: &mut Parser, atomic: bool) { /// Parses either /// - a parenthesized expression: `(1 + 2)`, or /// - an array: `(1, "hi", 12cm)`, or -/// - a dictionary: `(thickness: 3pt, pattern: dashed)`. +/// - a dictionary: `(thickness: 3pt, dash: "solid")`. fn parenthesized_or_array_or_dict(p: &mut Parser) -> SyntaxKind { let mut state = GroupState { count: 0, |
