mirror of https://github.com/status-im/NimYAML.git
parent
e33c448783
commit
89e18cebfa
|
@ -326,7 +326,7 @@ proc writeFolded(c: Context, scalar: string, indentation, indentStep: int,
|
|||
t.append(newline & newline)
|
||||
t.append(repeat(' ', indentation + indentStep))
|
||||
curPos = indentation + indentStep
|
||||
elif curPos + (word.finish - word.start) > 80:
|
||||
elif curPos + (word.finish - word.start + 1) > 80:
|
||||
t.append(newline)
|
||||
t.append(repeat(' ', indentation + indentStep))
|
||||
curPos = indentation + indentStep
|
||||
|
|
Loading…
Reference in New Issue