Fix string collect examples

collect -N leaves the trailing newline, not the other way around.
This commit is contained in:
Mikel Ward 2020-06-07 09:51:34 -07:00 committed by Fabian Homborg
parent 37e9a3067f
commit 96425d2231

View File

@ -35,12 +35,12 @@ Examples
>_ echo \"(echo one\ntwo\nthree | string collect)\"
"one
two
three
"
three"
>_ echo \"(echo one\ntwo\nthree | string collect -N)\"
"one
two
three"
three
"
.. END EXAMPLES