fix typo on documentation about pipes (#16152)

these documentations say ">" when what they mean is ">>"

# Description

this documentation is about the use of ">>", but the documentation
wrongly says ">". it has been updated to say ">>" instead.

# User-Facing Changes

the user will see ">>" in the documentation instead of ">".

# Tests + Formatting

there is nothing to test. this is a documentation change.

# After Submitting
This commit is contained in:
Ryan X. Charles
2025-07-10 09:16:02 -07:00
committed by GitHub
parent 05e570aa71
commit 33a2b98f66

View File

@ -73,19 +73,19 @@ https://www.nushell.sh/lang-guide/chapters/pipelines.html"#
"o>>", "o>>",
"redirection append", "redirection append",
"redirect stdout of a command, appending to a file", "redirect stdout of a command, appending to a file",
"^cmd1 o> file.txt", "^cmd1 o>> file.txt",
), ),
HelpExamples::new( HelpExamples::new(
"e>>", "e>>",
"stderr redirection append", "stderr redirection append",
"redirect stderr of a command, appending to a file", "redirect stderr of a command, appending to a file",
"^cmd1 e> file.txt", "^cmd1 e>> file.txt",
), ),
HelpExamples::new( HelpExamples::new(
"o+e>>", "o+e>>",
"stdout and stderr redirection append", "stdout and stderr redirection append",
"redirect stdout and stderr of a command, appending to a file", "redirect stdout and stderr of a command, appending to a file",
"^cmd1 o+e> file.txt", "^cmd1 o+e>> file.txt",
), ),
HelpExamples::new( HelpExamples::new(
"o>|", "o>|",