1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-30 11:44:27 +01:00

Update incorrect comment.

This commit is contained in:
John Lindgren
2019-10-29 13:21:59 -04:00
parent cf5b2d2568
commit 9c82fac380

View File

@@ -464,7 +464,7 @@ void UnityPrintFloat(const UNITY_DOUBLE input_number)
UNITY_DOUBLE number = input_number; UNITY_DOUBLE number = input_number;
/* print minus sign (including for negative zero) */ /* print minus sign (does not handle negative zero) */
if (number < 0.0f) if (number < 0.0f)
{ {
UNITY_OUTPUT_CHAR('-'); UNITY_OUTPUT_CHAR('-');