diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2012-07-26 03:25:26 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2012-08-01 17:50:00 +0000 |
commit | b49f1398a1a02eab06def81a9d25b972c81b8fe1 (patch) | |
tree | c6f51d9b5cbf00b334c5311391c55d828fa29753 /src/util.cpp | |
parent | 3c726dd3c07acdda465522f027ba115b4185afaf (diff) |
Bugfix: Correct English grammar regarding "'s"
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index 4cb8a214da..0334bf577e 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -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; |