From 2d9627df3393033b726f7e340cf588e935623eed Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Perrier Date: Thu, 12 Aug 2021 19:00:41 +0200 Subject: [PATCH] Tweak docs --- Source/Engine/Core/Math/Mathd.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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