summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorMartijn Dekker <martijn@inlv.org>2019-12-10 20:34:29 +0100
committerDaniel Shahaf <danielsh@apache.org>2019-12-11 02:37:39 +0000
commitd81238ee955f074cb2c303ce6047bfa7e513d772 (patch)
treeed0d548caffd464225629064b91d9462d0acbf44 /README
parent44997: GLOB_COMPLETE fix for compctl file completion. (diff)
downloadzsh-d81238ee955f074cb2c303ce6047bfa7e513d772.tar
zsh-d81238ee955f074cb2c303ce6047bfa7e513d772.tar.gz
zsh-d81238ee955f074cb2c303ce6047bfa7e513d772.tar.bz2
zsh-d81238ee955f074cb2c303ce6047bfa7e513d772.tar.lz
zsh-d81238ee955f074cb2c303ce6047bfa7e513d772.tar.xz
zsh-d81238ee955f074cb2c303ce6047bfa7e513d772.tar.zst
zsh-d81238ee955f074cb2c303ce6047bfa7e513d772.zip
45003: Fix more documentation typos
Diffstat (limited to 'README')
-rw-r--r--README8
1 files changed, 4 insertions, 4 deletions
diff --git a/README b/README
index 7ece48183..2dd82b61f 100644
--- a/README
+++ b/README
@@ -204,7 +204,7 @@ of this change is that variables that should have active ranges need
[[ b = [${~cset}] ]]
The "~" causes the "-" character to be active. In sh emulation the
-"~" is unncessary in this example and double quotes must be used to
+"~" is unnecessary in this example and double quotes must be used to
suppress the range behaviour of the "-".
2) The first argument to 'repeat' is now evaluated as an arithmetic
@@ -217,7 +217,7 @@ leading zeroes and the OCTAL_ZEROES option is set.
3) For some time the shell has had a POSIX_TRAPS option which determines
whether the EXIT trap has POSIX behaviour (the trap is only run at shell
exit) or traditional zsh behaviour (the trap is run once and discarded
-when the enclosing fuction or shell exits, whichever happens first).
+when the enclosing function or shell exits, whichever happens first).
The use of this option has now been made "sticky" on the EXIT trap ---
in other words, the setting of the option at the point where the trap is
set now determines whether the trap has POSIX or traditional zsh
@@ -344,7 +344,7 @@ can be used with both assoiative arrays and normal arrays. In the
unlikely event that you wish to create an array with an entry
matching a file whose name consists of one of a range of characters
matched as a [...] expression, followed by an equal sign, followed
-by arbitrary other charaters, it is now necessary to quote the equals
+by arbitrary other characters, it is now necessary to quote the equals
sign.
Incompatibilites between 5.0.7 and 5.0.8
@@ -361,7 +361,7 @@ or both of the arguments were floating point. Now, the C math
library fmod() operator is used to implement the operation where
one of the arguments is floating point. For example:
-Old behavour:
+Old behaviour:
% print $(( 5.5 % 2 ))
1