diff options
author | lethos3 <lethos3@protonmail.com> | 2017-03-05 11:11:44 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-05 11:11:44 +1300 |
commit | d18ff58a1cf52f3b0409e1d1f4873a133d7e8189 (patch) | |
tree | 5a1f1c9869d14b43589b2365a9aceb4de1893a59 | |
parent | Merge pull request #1837 (diff) | |
download | monero-d18ff58a1cf52f3b0409e1d1f4873a133d7e8189.tar.xz |
format_utils: fix typo in assert message
Fix two small typos as mentioned by reddit user nthterm.
-rw-r--r-- | src/cryptonote_basic/cryptonote_format_utils.cpp | 4 |
1 files 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); } } //--------------------------------------------------------------- |