summaryrefslogtreecommitdiff
path: root/src/eval/styles.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-04-07 14:32:35 +0200
committerLaurenz <laurmaedje@gmail.com>2022-04-07 16:19:51 +0200
commit1192132dc0a9e991953fd29e93f87c8437a53ea0 (patch)
tree67061e75a5a15c7997a3ac2de349b5e9ce234434 /src/eval/styles.rs
parenteb22eed31b08874fbbbee68d2ae59f0d02f9e95d (diff)
Rename length-related types
`Fractional` => `Fraction` `Relative` => `Ratio` `Linear` => `Relative`
Diffstat (limited to 'src/eval/styles.rs')
-rw-r--r--src/eval/styles.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval/styles.rs b/src/eval/styles.rs
index 8bd21612..b7f1889c 100644
--- a/src/eval/styles.rs
+++ b/src/eval/styles.rs
@@ -270,7 +270,7 @@ pub trait Key<'a>: 'static {
/// from a style chain. For example, this is [`bool`] for the
/// [`STRONG`](TextNode::STRONG) property. For non-copy, non-folding
/// properties this is a reference type.
- type Output: 'a;
+ type Output;
/// The name of the property, used for debug printing.
const NAME: &'static str;