diff options
| author | Luke Dashjr <[email protected]> | 2012-07-26 03:25:26 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-08-12 17:30:36 +0000 |
| commit | 448f6b3d9b6d598f6a3db7807934d10fe94d5a71 (patch) | |
| tree | cb6892a2fab1b15717b3e016dfdffc8826b904ca /src/util.cpp | |
| parent | Bugfix: Use standard BTC unit in comments (diff) | |
| download | discoin-448f6b3d9b6d598f6a3db7807934d10fe94d5a71.tar.xz discoin-448f6b3d9b6d598f6a3db7807934d10fe94d5a71.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 fb3bc64cc..49415fc3b 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -354,7 +354,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; |