From d18ff58a1cf52f3b0409e1d1f4873a133d7e8189 Mon Sep 17 00:00:00 2001 From: lethos3 Date: Sun, 5 Mar 2017 11:11:44 +1300 Subject: [PATCH] format_utils: fix typo in assert message Fix two small typos as mentioned by reddit user nthterm. --- src/cryptonote_basic/cryptonote_format_utils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cryptonote_basic/cryptonote_format_utils.cpp b/src/cryptonote_basic/cryptonote_format_utils.cpp index 05b24eee0..00e7b9d80 100644 --- a/src/cryptonote_basic/cryptonote_format_utils.cpp +++ b/src/cryptonote_basic/cryptonote_format_utils.cpp @@ -529,7 +529,7 @@ namespace cryptonote default_decimal_point = decimal_point; break; default: - ASSERT_MES_AND_THROW("Invalid decimal point specificatin: " << decimal_point); + ASSERT_MES_AND_THROW("Invalid decimal point specification: " << decimal_point); } } //--------------------------------------------------------------- @@ -555,7 +555,7 @@ namespace cryptonote case 0: return "piconero"; default: - ASSERT_MES_AND_THROW("Invalid decimal point specificatin: " << default_decimal_point); + ASSERT_MES_AND_THROW("Invalid decimal point specification: " << default_decimal_point); } } //---------------------------------------------------------------