From b1922fe95e7096c5e35cba6f94c3dccdab5af49d Mon Sep 17 00:00:00 2001 From: John Jones-Steele Date: Fri, 23 Jul 2021 15:26:38 +0100 Subject: [PATCH] Changed comment to reflect PR Signed-off-by: John Jones-Steele --- .../AzQtComponents/AzQtComponents/Utilities/Conversions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/Conversions.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/Conversions.cpp index 591b4a3701..c9327d199e 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Utilities/Conversions.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Utilities/Conversions.cpp @@ -52,7 +52,7 @@ namespace AzQtComponents // Handle special cases when we have decimals in our value if (numDecimals > 0) { - // Truncate the extra digit now, if it's still there + // Truncate the extra digits now, if they're still there int decimalPointIndex = retValue.lastIndexOf(decimalPoint); if ((decimalPointIndex > 0) && (retValue.size() - (decimalPointIndex + 1)) == numToStringDecimals) {