From 8d0c306de91bbeab0c12e43c965733d260bfcfd2 Mon Sep 17 00:00:00 2001 From: Tskken Date: Tue, 5 Nov 2019 16:32:55 -0700 Subject: [PATCH] typo fix fixed typo in comments. --- geometry.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geometry.go b/geometry.go index f91fbd7..c2bbe6e 100644 --- a/geometry.go +++ b/geometry.go @@ -624,7 +624,7 @@ func (r Rect) Intersect(s Rect) Rect { // Intersects returns whether or not the given Rect intersects at any point with this Rect. // -// This function is overall about 5x faster then Intersect, so it is better +// This function is overall about 5x faster than Intersect, so it is better // to use if you have no need for the returned Rect from Intersect. func (r Rect) Intersects(s Rect) bool { return !(s.Max.X < r.Min.X ||