Format paragraphs properly - count the space between words.
This commit is contained in:
parent
4383319e4e
commit
83b81f6c8a
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue