diff options
Diffstat (limited to 'src/library/mod.rs')
| -rw-r--r-- | src/library/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/library/mod.rs b/src/library/mod.rs index 513590eb..333ba02a 100644 --- a/src/library/mod.rs +++ b/src/library/mod.rs @@ -58,7 +58,7 @@ function! { list: Vec<String>, } - parse(args, body, ctx, meta) { + parse(args, body, ctx) { FontFamilyFunc { body: parse!(optional: body, ctx), list: { @@ -114,7 +114,7 @@ function! { weight: FontWeight, } - parse(args, body, ctx, meta) { + parse(args, body, ctx) { FontWeightFunc { body: parse!(optional: body, ctx), weight: match args.get_pos::<Expression>()? { @@ -195,7 +195,7 @@ function! { } } - layout(self, mut ctx) { + layout(self, ctx) { let mut style = ctx.style.text.clone(); match self.content { ContentKind::Word => style.word_spacing_scale = self.spacing, |
