aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2014-12-06 21:26:52 +0100
committerPavel Janík <Pavel@Janik.cz>2014-12-06 21:26:52 +0100
commit83b81f6c8a88874d1e732525f43407f0576574c3 (patch)
treeb6952a4784e7221968e61e20a410d45a40c83ad4 /src
parent4383319e4e0cb96818d2be734f7280181daac9fa (diff)
downloadbitcoin-83b81f6c8a88874d1e732525f43407f0576574c3.tar.xz
Format paragraphs properly - count the space between words.
Diffstat (limited to 'src')
-rw-r--r--src/utilstrencodings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utilstrencodings.cpp b/src/utilstrencodings.cpp
index d0062d4544..419a63c431 100644
--- a/src/utilstrencodings.cpp
+++ b/src/utilstrencodings.cpp
@@ -459,7 +459,7 @@ std::string FormatParagraph(const std::string in, size_t width, size_t indent)
}
// Append word
out << in.substr(ptr, endword - ptr);
- col += endword - ptr;
+ col += endword - ptr + 1;
ptr = endword;
}
return out.str();