Remove repetitive words (#3991)

Signed-off-by: hardlydearly <799511800@qq.com>
This commit is contained in:
hardlydearly 2024-04-30 20:22:59 +08:00 committed by GitHub
parent 9f8cb27aef
commit 6ba94c4518
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -2906,7 +2906,7 @@ impl<'a> GridLayouter<'a> {
rowspan.max_resolved_row.map_or(true, |max_row| y > max_row)
})
{
// If the first region wasn't defined yet, it will have the the
// If the first region wasn't defined yet, it will have the
// initial value of usize::MAX, so we can set it to the current
// region's index.
if rowspan.first_region > current_region {

View File

@ -173,7 +173,7 @@
}
--- array-first-and-last ---
// The the `first` and `last` methods.
// The `first` and `last` methods.
#test((1,).first(), 1)
#test((2,).last(), 2)
#test((1, 2, 3).first(), 1)

View File

@ -133,7 +133,7 @@
#test-repr(oklch(rgb(1, 2, 3)), oklch(8.23%, 0.008, 240.75deg, 100%))
--- color-spaces ---
// The the different color spaces
// The different color spaces
#let col = rgb(50%, 64%, 16%)
#box(square(size: 9pt, fill: col))
#box(square(size: 9pt, fill: rgb(col)))