aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2012-07-26 03:25:26 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2012-08-12 17:30:36 +0000
commit448f6b3d9b6d598f6a3db7807934d10fe94d5a71 (patch)
treecb6892a2fab1b15717b3e016dfdffc8826b904ca /src/util.cpp
parent8911ac0b27510914efbfed80ddfb7f19757ac102 (diff)
downloadbitcoin-448f6b3d9b6d598f6a3db7807934d10fe94d5a71.tar.xz
Bugfix: Correct English grammar regarding "'s"
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index fb3bc64cc8..49415fc3b7 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;