From a26aa1cd164b6c18a1158cef6865de7655262e09 Mon Sep 17 00:00:00 2001 From: orbitcowboy Date: Wed, 14 Jan 2015 00:51:50 +0100 Subject: [PATCH] testmathlib: Fixed typo in comment, no functional changes. --- test/testmathlib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testmathlib.cpp b/test/testmathlib.cpp index 256b27e86..4d4a43606 100644 --- a/test/testmathlib.cpp +++ b/test/testmathlib.cpp @@ -799,7 +799,7 @@ private: ASSERT_EQUALS(true, MathLib::isNullValue("0LL")); ASSERT_EQUALS(true, MathLib::isNullValue("+0LL")); ASSERT_EQUALS(true, MathLib::isNullValue("-0LL")); - // long long unsigend zero value + // long long unsigned zero value ASSERT_EQUALS(true, MathLib::isNullValue("0LLU")); ASSERT_EQUALS(true, MathLib::isNullValue("+0LLU")); ASSERT_EQUALS(true, MathLib::isNullValue("-0LLU"));