diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-06-13 23:16:40 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-06-14 13:53:02 +0200 |
| commit | c81e2a5f56eb262663f292578c683fba7f18251f (patch) | |
| tree | 6c045a8dcbec5e75e01a15f970ef8cee6ff042d0 /src/eval/raw.rs | |
| parent | 891af17260a6750a74a102388a05e59cf1ffc3c1 (diff) | |
Many fixes
Diffstat (limited to 'src/eval/raw.rs')
| -rw-r--r-- | src/eval/raw.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval/raw.rs b/src/eval/raw.rs index ee64b8c4..9cf346b1 100644 --- a/src/eval/raw.rs +++ b/src/eval/raw.rs @@ -92,7 +92,7 @@ pub struct RawStroke<T = RawLength> { } impl RawStroke<Length> { - /// Unpack the stroke, filling missing fields with `default`. + /// Unpack the stroke, filling missing fields from the `default`. pub fn unwrap_or(self, default: Stroke) -> Stroke { Stroke { paint: self.paint.unwrap_or(default.paint), |
