From aea19df3c1831af1f34eff8104ff478461e3c53d Mon Sep 17 00:00:00 2001 From: Ed Hennis Date: Wed, 20 May 2026 18:46:17 -0400 Subject: [PATCH] Apply suggestions from @Tapanito code review Co-authored-by: Vito Tumas <5780819+Tapanito@users.noreply.github.com> --- include/xrpl/basics/Number.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/xrpl/basics/Number.h b/include/xrpl/basics/Number.h index aaecb5d5b5..b5a11d2ab6 100644 --- a/include/xrpl/basics/Number.h +++ b/include/xrpl/basics/Number.h @@ -123,7 +123,7 @@ private: default: // If called in a constexpr context, this throw assures that the build fails if an // invalid scale is used. - throw std::runtime_error("Unknown mantissa scale"); + throw std::runtime_error("Unknown mantissa scale"); //LCOV_EXCL_LINE } } @@ -140,7 +140,7 @@ private: default: // If called in a constexpr context, this throw assures that the build fails if an // invalid scale is used. - throw std::runtime_error("Unknown mantissa scale"); + throw std::runtime_error("Unknown mantissa scale"); //LCOV_EXCL_LINE } }