summaryrefslogtreecommitdiff
path: root/src/library/text/repeat.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/text/repeat.rs')
-rw-r--r--src/library/text/repeat.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/text/repeat.rs b/src/library/text/repeat.rs
index 68036be7..9ee8286b 100644
--- a/src/library/text/repeat.rs
+++ b/src/library/text/repeat.rs
@@ -6,7 +6,7 @@ pub struct RepeatNode(pub LayoutNode);
#[node]
impl RepeatNode {
- fn construct(_: &mut Context, args: &mut Args) -> TypResult<Content> {
+ fn construct(_: &mut Machine, args: &mut Args) -> TypResult<Content> {
Ok(Content::inline(Self(args.expect("body")?)))
}
}