aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlethos3 <lethos3@protonmail.com>2017-03-05 11:11:44 +1300
committerGitHub <noreply@github.com>2017-03-05 11:11:44 +1300
commitd18ff58a1cf52f3b0409e1d1f4873a133d7e8189 (patch)
tree5a1f1c9869d14b43589b2365a9aceb4de1893a59 /src
parentMerge pull request #1837 (diff)
downloadmonero-d18ff58a1cf52f3b0409e1d1f4873a133d7e8189.tar.xz
format_utils: fix typo in assert message
Fix two small typos as mentioned by reddit user nthterm.
Diffstat (limited to 'src')
-rw-r--r--src/cryptonote_basic/cryptonote_format_utils.cpp4
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);
}
}
//---------------------------------------------------------------