Fixed typo in documentation

This commit is contained in:
Pascal Serrarens 2024-12-27 23:20:11 +01:00
parent 64b7f1103b
commit 89a57114a4

View File

@ -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 <typename T> class AngleOf {