Skip to content

Commit 75877aa

Browse files
authored
Fix comment typo in rect_impl.h
1 parent 73c9df0 commit 75877aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src_c/rect_impl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ RectExport_do_rects_intresect(InnerRect *A, InnerRect *B)
413413
}
414414

415415
// A.left < B.right &&
416-
// A.top < A.bottom &&
416+
// A.top < B.bottom &&
417417
// A.right > B.left &&
418418
// A.bottom > b.top
419419
return (MIN(A->x, A->x + A->w) < MAX(B->x, B->x + B->w) &&

0 commit comments

Comments
 (0)