diff --git a/Source/Engine/Core/Math/Mathd.h b/Source/Engine/Core/Math/Mathd.h index 6806ad0a9..47b16b608 100644 --- a/Source/Engine/Core/Math/Mathd.h +++ b/Source/Engine/Core/Math/Mathd.h @@ -8,7 +8,7 @@ namespace Math { /// - /// Computes the sine and cosine of a scalar float. + /// Computes the sine and cosine of a scalar double. /// /// The input angle (in radians). /// The output sine value. @@ -198,7 +198,7 @@ namespace Math } /// - /// Compares the sign of two floating-point values. + /// Compares the sign of two double values. /// /// The first value. /// The second value. @@ -209,7 +209,7 @@ namespace Math } /// - /// Compares the sign of two floating-point values. + /// Compares the sign of two double values. /// /// The first value. /// The second value. @@ -220,7 +220,7 @@ namespace Math } /// - /// Checks if a and b are not even almost equal, taking into account the magnitude of floating point numbers + /// Checks if a and b are not even almost equal, taking into account the magnitude of double numbers /// /// The left value to compare /// The right value to compare