diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2000-05-08 18:14:46 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2000-05-08 18:14:46 +0000 |
commit | e5eb094bf3c031f07f7e9ab152fe63a120dd3821 (patch) | |
tree | ea010abafff09ec9e3bede539a132de2ab24ab6d /Doc/Zsh/builtins.yo | |
parent | 7eba876bda2b48e6756280cb0fa7d52e3440e2e0 (diff) | |
download | zsh-e5eb094bf3c031f07f7e9ab152fe63a120dd3821.tar.gz zsh-e5eb094bf3c031f07f7e9ab152fe63a120dd3821.tar.xz zsh-e5eb094bf3c031f07f7e9ab152fe63a120dd3821.zip |
minor doc fixes (11268)
Diffstat (limited to 'Doc/Zsh/builtins.yo')
-rw-r--r-- | Doc/Zsh/builtins.yo | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/Zsh/builtins.yo b/Doc/Zsh/builtins.yo index 31e94805b..a65ff4717 100644 --- a/Doc/Zsh/builtins.yo +++ b/Doc/Zsh/builtins.yo @@ -1026,13 +1026,13 @@ the former. Only the scalar may have an initial value. Both the scalar and the array may otherwise be manipulated as normal. If one is unset, the other will automatically be unset too. There is no way of untying the variables without unsetting them, or converting the -type of one them with another tt(typeset) command; tt(+T) does not work, -assigning an array to var(SCALAR) is an error, and assigning a scalar -to var(array) sets it to be a single-element array. Note that +type of one of them with another tt(typeset) command; tt(+T) does not +work, assigning an array to var(SCALAR) is an error, and assigning a +scalar to var(array) sets it to be a single-element array. Note that both tt(typeset -xT ...) and tt(export -T ...) work, but only the scalar will be marked for export. -The flag tt(-g) (global) flag is treated specially: it means that any +The tt(-g) (global) flag is treated specially: it means that any resulting parameter will not be restricted to local scope. Note that this does not necessarily mean that the parameter will be global, as the flag will apply to any existing parameter (even if unset) from an enclosing |