From 96425d2231c6b68e6a0e0f9cbc87b6dbfe73c898 Mon Sep 17 00:00:00 2001 From: Mikel Ward Date: Sun, 7 Jun 2020 09:51:34 -0700 Subject: [PATCH] Fix string collect examples collect -N leaves the trailing newline, not the other way around. --- doc_src/cmds/string-collect.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc_src/cmds/string-collect.rst b/doc_src/cmds/string-collect.rst index 2e06f7990..dd3f31e1b 100644 --- a/doc_src/cmds/string-collect.rst +++ b/doc_src/cmds/string-collect.rst @@ -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