Fixes line wrapping to 80 columns rather than 79

This commit is contained in:
sloumdrone 2020-01-04 10:53:24 -08:00
parent 10f28027dc
commit 71e21543f0
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ func (p *Page) WrapContent(width int, color bool) {
}
continue
} else {
if counter < width {
if counter <= width {
content.WriteRune(ch)
counter++
} else {