summaryrefslogtreecommitdiff
path: root/crates/typst-layout/src/flow
diff options
context:
space:
mode:
authorevie <50974538+mi2ebi@users.noreply.github.com>2025-03-11 03:00:53 -0700
committerGitHub <noreply@github.com>2025-03-11 10:00:53 +0000
commit3650859ae8823f47c9f50db6ad5ed52a0477bf15 (patch)
treeccb21d73c0263019744ea5e8276fbda91ee4f7f5 /crates/typst-layout/src/flow
parentbd531e08dc3dbe26ac779d5730bf0814800b7de9 (diff)
Fix `cargo clippy` warnings (mostly about `.repeat.take` and `.next_back`) (#6038)
Diffstat (limited to 'crates/typst-layout/src/flow')
-rw-r--r--crates/typst-layout/src/flow/compose.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst-layout/src/flow/compose.rs b/crates/typst-layout/src/flow/compose.rs
index 76af8f65..54dc487a 100644
--- a/crates/typst-layout/src/flow/compose.rs
+++ b/crates/typst-layout/src/flow/compose.rs
@@ -115,7 +115,7 @@ impl<'a, 'b> Composer<'a, 'b, '_, '_> {
let column_height = regions.size.y;
let backlog: Vec<_> = std::iter::once(&column_height)
.chain(regions.backlog)
- .flat_map(|&h| std::iter::repeat(h).take(self.config.columns.count))
+ .flat_map(|&h| std::iter::repeat_n(h, self.config.columns.count))
.skip(1)
.collect();