Merge pull request #1632 from luke-jr/spelling

Fix spelling and grammar errors
This commit is contained in:
Jeff Garzik
2012-08-01 10:56:47 -07:00
39 changed files with 97 additions and 97 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;