summaryrefslogtreecommitdiff
path: root/src/syntax
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-07-08 22:33:44 +0200
committerLaurenz <laurmaedje@gmail.com>2021-07-08 22:33:44 +0200
commitfd0b89a1d8e4f811fcf3517d321a327a0cf72edf (patch)
tree75d247866f5db1a0ad32909da6e0fdaafa479592 /src/syntax
parent7e2c217cbc3805c4cae613baf4149cc82e10d503 (diff)
Rename Fill to Paint
Diffstat (limited to 'src/syntax')
-rw-r--r--src/syntax/expr.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax/expr.rs b/src/syntax/expr.rs
index c4462ff8..368fe41f 100644
--- a/src/syntax/expr.rs
+++ b/src/syntax/expr.rs
@@ -33,7 +33,7 @@ pub enum Expr {
Ident(Ident),
/// An array expression: `(1, "hi", 12cm)`.
Array(ArrayExpr),
- /// A dictionary expression: `(color: #f79143, pattern: dashed)`.
+ /// A dictionary expression: `(thickness: 3pt, pattern: dashed)`.
Dict(DictExpr),
/// A template expression: `[*Hi* there!]`.
Template(TemplateExpr),
@@ -123,7 +123,7 @@ pub struct ArrayExpr {
pub items: Vec<Expr>,
}
-/// A dictionary expression: `(color: #f79143, pattern: dashed)`.
+/// A dictionary expression: `(thickness: 3pt, pattern: dashed)`.
#[derive(Debug, Clone, PartialEq)]
pub struct DictExpr {
/// The source code location.