diff --git a/apps/website/contents/algorithms/geometry.md b/apps/website/contents/algorithms/geometry.md
index 477be1ea..d08a4b41 100644
--- a/apps/website/contents/algorithms/geometry.md
+++ b/apps/website/contents/algorithms/geometry.md
@@ -33,7 +33,7 @@ In algorithm interviews, geometry is usually not be the focus of the problem (yo
### Distance between two points
-When comparing the between two points, using dx2 + dy2 is sufficient. It is unnecessary to square root the value. Examples: [K Closest Points to Origin](https://leetcode.com/problems/k-closest-points-to-origin/)
+When comparing the distance between two points, using dx2 + dy2 is sufficient. It is unnecessary to square root the value. Examples: [K Closest Points to Origin](https://leetcode.com/problems/k-closest-points-to-origin/)
### Overlapping circles