about summary refs log tree commit diff
path: root/Doc/Zsh/redirect.yo
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/Zsh/redirect.yo')
-rw-r--r--Doc/Zsh/redirect.yo13
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)