Bugfix: Correct English grammar regarding "'s"

This commit is contained in:
Luke Dashjr
2012-07-26 03:25:26 +00:00
parent 3c726dd3c0
commit b49f1398a1
12 changed files with 19 additions and 19 deletions

View File

@@ -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;