From a6fa237db27d25c124e7d1be82bc30360eb7086d Mon Sep 17 00:00:00 2001 From: John McKay <34872500+McKayJT@users.noreply.github.com> Date: Wed, 9 Jan 2019 23:07:09 +0000 Subject: [PATCH] print --help to stdout like other builtins (#5495) --- src/builtin_string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtin_string.cpp b/src/builtin_string.cpp index bbc7e40c0..8e7777111 100644 --- a/src/builtin_string.cpp +++ b/src/builtin_string.cpp @@ -1305,7 +1305,7 @@ int builtin_string(parser_t &parser, io_streams_t &streams, wchar_t **argv) { } if (wcscmp(argv[1], L"-h") == 0 || wcscmp(argv[1], L"--help") == 0) { - builtin_print_help(parser, streams, L"string", streams.err); + builtin_print_help(parser, streams, L"string", streams.out); return STATUS_CMD_OK; }