diff options
author | Mikael Magnusson <mikachu@gmail.com> | 2011-08-10 23:04:57 +0000 |
---|---|---|
committer | Mikael Magnusson <mikachu@gmail.com> | 2011-08-10 23:04:57 +0000 |
commit | 7e27b4eee387f9a374349588d464918a500c202d (patch) | |
tree | a5e8eed077d561b2e131dcc8c7185abe0e4aee2c /Doc/Zsh | |
parent | bbbaed2b5395e0a646dc618cd8c6bdd7dde25c81 (diff) | |
download | zsh-7e27b4eee387f9a374349588d464918a500c202d.tar.gz zsh-7e27b4eee387f9a374349588d464918a500c202d.tar.xz zsh-7e27b4eee387f9a374349588d464918a500c202d.zip |
unposted: fix two typos in 29661
Diffstat (limited to 'Doc/Zsh')
-rw-r--r-- | Doc/Zsh/redirect.yo | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Doc/Zsh/redirect.yo b/Doc/Zsh/redirect.yo index 67bad66ee..8d231f40f 100644 --- a/Doc/Zsh/redirect.yo +++ b/Doc/Zsh/redirect.yo @@ -169,13 +169,12 @@ cindex(file descriptors, use with parameters) cindex(parameters, for using file descriptors) When the shell is parsing arguments to a command, and the shell option -The option tt(IGNORE_BRACES) is not set, a different form of -redirection is allowed: instead of a digit before the operator -there is a valid shell identifier enclosed in braces. The shell will -open a new file descriptor that is guaranteed to be at least 10 and set -the parameter named by the identifier to the file descriptor opened. No -whitespace is allowed between the closing brace and the redirection -character. For example: +tt(IGNORE_BRACES) is not set, a different form of redirection is allowed: +instead of a digit before the operator there is a valid shell identifier +enclosed in braces. The shell will open a new file descriptor that +is guaranteed to be at least 10 and set the parameter named by the +identifier to the file descriptor opened. No whitespace is allowed +between the closing brace and the redirection character. For example: indent(... {myfd}>&1) |