From 89a57114a4840c68e0b333a4b6d3d8cc2073a97c Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Fri, 27 Dec 2024 23:20:11 +0100 Subject: [PATCH] Fixed typo in documentation --- Angle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Angle.h b/Angle.h index 27aac41..f8a215f 100644 --- a/Angle.h +++ b/Angle.h @@ -15,7 +15,7 @@ static float Deg2Rad = (pi * 2) / 360.0f; /// @brief An angle in various representations. /// @tparam T The internal type used for the representation of the angle. -/// The angle is internally limited to <-180..180] degrees or <-PI...PI] +/// The angle is internally limited to (-180..180] degrees or (-PI...PI] /// radians. When an angle exceeds this range, it is normalized to a value /// within the range. template class AngleOf {