mirror of
https://github.com/monero-project/monero.git
synced 2025-12-21 23:00:49 -08:00
format_utils: fix typo in assert message
Fix two small typos as mentioned by reddit user nthterm.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
//---------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user