diff options
author | Peter Stephenson <pws@zsh.org> | 2016-05-01 13:05:08 +0100 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2016-05-01 13:05:08 +0100 |
commit | 5b2b94918ae1b038144ac32c09805d97153f9f7d (patch) | |
tree | 858599f6b00245fe6f2ba4697c042bb9e430a9a7 /Doc/Zsh | |
parent | 857153c507ce0fc0d0e4180aad9896a5eaefc442 (diff) | |
download | zsh-5b2b94918ae1b038144ac32c09805d97153f9f7d.tar.gz zsh-5b2b94918ae1b038144ac32c09805d97153f9f7d.tar.xz zsh-5b2b94918ae1b038144ac32c09805d97153f9f7d.zip |
unposted: typo in redirect doc
Diffstat (limited to 'Doc/Zsh')
-rw-r--r-- | Doc/Zsh/redirect.yo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/Zsh/redirect.yo b/Doc/Zsh/redirect.yo index 66160a61e..c793638b7 100644 --- a/Doc/Zsh/redirect.yo +++ b/Doc/Zsh/redirect.yo @@ -246,7 +246,7 @@ In the case above, the tt(>&1) refers to the standard output at the start of the line; the result is similar to the tt(tee) command. However, consider: -exmaple(date >output >&1) +example(date >output >&1) As redirections are evaluated in order, when the tt(>&1) is encountered the standard output is set to the file tt(output) and another copy of |