From 5fc20f226e7d6f2bd49ad1c6fdcca0f18ec5ad31 Mon Sep 17 00:00:00 2001 From: StartsMercury <89975834+StartsMercury@users.noreply.github.com> Date: Sun, 10 Nov 2024 13:13:56 +0800 Subject: [PATCH] Intersection.java: fix from plural to singular --- src/main/java/dev/crmodders/flux/api/math/Intersection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/dev/crmodders/flux/api/math/Intersection.java b/src/main/java/dev/crmodders/flux/api/math/Intersection.java index 3bc502c..ad658fc 100644 --- a/src/main/java/dev/crmodders/flux/api/math/Intersection.java +++ b/src/main/java/dev/crmodders/flux/api/math/Intersection.java @@ -89,7 +89,7 @@ public boolean exited() { /** * Finds line-AABB intersection. *
- * This methods collects point intersections between a line segment and an AABB, + * This method collects point intersections between a line segment and an AABB, * storing into a buffer the point components and sorting it with the distance * from the start point; there may be up to two intersections. It is assumed that * moving left or up is negative while right or down is positive.