mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 22:17:49 +02:00
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:
@ -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>|",
|
||||||
|
Reference in New Issue
Block a user