From 961385aad516d12a11216ddf3f10a4a16144fc9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?On=C3=A8?= <43485962+c-git@users.noreply.github.com> Date: Fri, 27 Feb 2026 19:26:12 -0500 Subject: [PATCH] Fix typo in stderr redirection instructions --- book/stdout_stderr_exit_codes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/stdout_stderr_exit_codes.md b/book/stdout_stderr_exit_codes.md index 7bbdba241fb..511597c5051 100644 --- a/book/stdout_stderr_exit_codes.md +++ b/book/stdout_stderr_exit_codes.md @@ -20,7 +20,7 @@ Without the pipeline, Nushell will not do any redirection, allowing it to print Another common stream that external applications often use to print error messages is stderr. By default, Nushell does not do any redirection of stderr, which means that by default it will print to the screen. -But you can do pass stderr to a command or a file if you want to: +But you can pass stderr to a command or a file if you want to: - use `e>|` to pass stderr to next command. - use `e> file` to redirect stderr to a file.