diff options
| author | Luke Dashjr <[email protected]> | 2012-07-26 03:25:26 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-08-01 17:50:00 +0000 |
| commit | b49f1398a1a02eab06def81a9d25b972c81b8fe1 (patch) | |
| tree | c6f51d9b5cbf00b334c5311391c55d828fa29753 /src/util.cpp | |
| parent | Bugfix: Use standard BTC unit in comments (diff) | |
| download | discoin-b49f1398a1a02eab06def81a9d25b972c81b8fe1.tar.xz discoin-b49f1398a1a02eab06def81a9d25b972c81b8fe1.zip | |
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 4cb8a214d..0334bf577 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; |