diff --git a/geometry.go b/geometry.go
index b912d16155593dc92c597fac5e161933aae45027..3244c63e7700868d572dad6966bca2a12a021607 100644
--- a/geometry.go
+++ b/geometry.go
@@ -78,7 +78,7 @@ func (u Vec) Len() float64 {
 	return cmplx.Abs(complex128(u))
 }
 
-// Angle returns the angle between the vector u and the x-axis. The result is in the range [-Pi, Pi].
+// Angle returns the angle between the vector u and the x-axis. The result is in range [-Pi, Pi].
 func (u Vec) Angle() float64 {
 	return cmplx.Phase(complex128(u))
 }