diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-06-12 17:45:52 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-06-12 20:51:31 +0200 |
| commit | 7660978ee5d842648e244e2972273264d94ca37b (patch) | |
| tree | 74e1c8bc578afa616ddcd6c4c9e79c3c3d311d78 /src/library/text/repeat.rs | |
| parent | 6e3b1a2c80428d581d00b9d65e1c45401df2e210 (diff) | |
Move `Arc` into `Frame`
Diffstat (limited to 'src/library/text/repeat.rs')
| -rw-r--r-- | src/library/text/repeat.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/text/repeat.rs b/src/library/text/repeat.rs index 9ee8286b..a3e83ac7 100644 --- a/src/library/text/repeat.rs +++ b/src/library/text/repeat.rs @@ -17,7 +17,7 @@ impl Layout for RepeatNode { ctx: &mut Context, regions: &Regions, styles: StyleChain, - ) -> TypResult<Vec<Arc<Frame>>> { + ) -> TypResult<Vec<Frame>> { // The actual repeating happens directly in the paragraph. self.0.layout(ctx, regions, styles) } |
