From b49c079b1d493bc84bd570a6d01ed4a4c1a499f0 Mon Sep 17 00:00:00 2001 From: vict-Yang <105902098+vict-Yang@users.noreply.github.com> Date: Sun, 16 Feb 2025 22:43:32 +0800 Subject: [PATCH] Fix typo in rshapes.c (#4772) --- src/rshapes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rshapes.c b/src/rshapes.c index 704d74f40..9327a5543 100644 --- a/src/rshapes.c +++ b/src/rshapes.c @@ -2356,7 +2356,7 @@ bool CheckCollisionPointLine(Vector2 point, Vector2 p1, Vector2 p2, int threshol return collision; } -// Check if circle collides with a line created betweeen two points [p1] and [p2] +// Check if circle collides with a line created between two points [p1] and [p2] RLAPI bool CheckCollisionCircleLine(Vector2 center, float radius, Vector2 p1, Vector2 p2) { float dx = p1.x - p2.x;