mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-17 13:07:54 +02:00
Merge pull request #1632 from luke-jr/spelling
Fix spelling and grammar errors
This commit is contained in:
commit
f81e6f779b
39 changed files with 97 additions and 97 deletions
|
|
@ -348,7 +348,7 @@ string FormatMoney(int64 n, bool fPlus)
|
|||
int64 remainder = n_abs%COIN;
|
||||
string str = strprintf("%"PRI64d".%08"PRI64d, quotient, remainder);
|
||||
|
||||
// Right-trim excess 0's before the decimal point:
|
||||
// Right-trim excess zeros before the decimal point:
|
||||
int nTrim = 0;
|
||||
for (int i = str.size()-1; (str[i] == '0' && isdigit(str[i-2])); --i)
|
||||
++nTrim;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue