@@ -216,8 +216,8 @@ fn intersect_impl<S: Simd>(
216
216
OverlapRelationship :: Overlap ( overlap) => {
217
217
match ( region_1, region_2) {
218
218
// Both regions are a fill. Flush the current strip and start a new
219
- // one at the end of the overlap region setting the winding number to
220
- // one, so that the whole area before that will be filled with a sparse
219
+ // one at the end of the overlap region setting `fill_gap` to true,
220
+ // so that the whole area before that will be filled with a sparse
221
221
// fill.
222
222
( Region :: Fill ( _) , Region :: Fill ( _) ) => {
223
223
flush_strip ( & mut strip_state, & mut target. strips , cur_y) ;
@@ -237,7 +237,7 @@ fn intersect_impl<S: Simd>(
237
237
[ ..overlap. width ( ) as usize * 4 ] ;
238
238
target. alphas . extend_from_slice ( s_alphas) ;
239
239
}
240
- // Two strips, we need to multiply the opacitie masks from both paths.
240
+ // Two strips, we need to multiply the opacity masks from both paths.
241
241
( Region :: Strip ( s_region_1) , Region :: Strip ( s_region_2) ) => {
242
242
// Once again, only create a new strip if we can't extend the current one.
243
243
if should_create_new_strip ( & strip_state, & target. alphas , overlap. start )
0 commit comments