diff --git a/src/Magnum/Math/Angle.h b/src/Magnum/Math/Angle.h index 5d9df0db9..e5bb0cabb 100644 --- a/src/Magnum/Math/Angle.h +++ b/src/Magnum/Math/Angle.h @@ -126,7 +126,7 @@ template class Deg: public Unit { * @brief Construct degrees from radians * * Performs conversion from radians to degrees, i.e.: @f[ - * deg = 180 \frac {rad} \pi + * deg = rad \frac{180}{\pi} * @f] * @m_keyword{degrees(),GLSL degrees(),} */ @@ -198,7 +198,7 @@ template class Rad: public Unit { * @brief Construct radians from degrees * * Performs conversion from degrees to radians, i.e.: @f[ - * rad = deg \frac \pi 180 + * rad = deg \frac{\pi}{180} * @f] * @m_keyword{radians(),GLSL radians(),} */