diff options
| author | Andrew Voynov <37143421+Andrew15-5@users.noreply.github.com> | 2025-03-03 14:31:39 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-03 11:31:39 +0000 |
| commit | bf0d45e2c0086ba2ae71eeebbfd26db7dfe7692f (patch) | |
| tree | db40ad959cf05ee6e9743ebb9e8bc3a58f1e04b4 | |
| parent | d4def0996235a791291bb39a570ae301feea099c (diff) | |
Make `array.chunks` example more readable (#5975)
| -rw-r--r-- | crates/typst-library/src/foundations/array.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst-library/src/foundations/array.rs b/crates/typst-library/src/foundations/array.rs index aad7266b..e81b9e64 100644 --- a/crates/typst-library/src/foundations/array.rs +++ b/crates/typst-library/src/foundations/array.rs @@ -751,7 +751,7 @@ impl Array { /// /// ```example /// #let array = (1, 2, 3, 4, 5, 6, 7, 8) - /// #array.chunks(3) + /// #array.chunks(3) \ /// #array.chunks(3, exact: true) /// ``` #[func] |
