format_utils: fix typo in assert message

Fix two small typos as mentioned by reddit user nthterm.
pull/95/head
lethos3 7 years ago committed by GitHub
parent 4728ab977a
commit d18ff58a1c

@ -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);
}
}
//---------------------------------------------------------------

Loading…
Cancel
Save