Make array.chunks example more readable (#5975)

This commit is contained in:
Andrew Voynov 2025-03-03 14:31:39 +03:00 committed by GitHub
parent d4def09962
commit bf0d45e2c0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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]