summaryrefslogtreecommitdiff
path: root/Etc
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 /Etc
parentae583886194c41ad83b7e932c4b6e8cd3d3c5576 (diff)
downloadzsh-d81238ee955f074cb2c303ce6047bfa7e513d772.tar.gz
zsh-d81238ee955f074cb2c303ce6047bfa7e513d772.zip
45003: Fix more documentation typos
Diffstat (limited to 'Etc')
-rw-r--r--Etc/FAQ.yo6
-rw-r--r--Etc/zsh-development-guide2
2 files changed, 4 insertions, 4 deletions
diff --git a/Etc/FAQ.yo b/Etc/FAQ.yo
index a9ce754b5..cf4348cbe 100644
--- a/Etc/FAQ.yo
+++ b/Etc/FAQ.yo
@@ -1390,7 +1390,7 @@ sect(Why do my autoloaded functions not autoload [the first time]?)
redefine the function when you called it.
From version 3.1, there is an option tt(KSH_AUTOLOAD) to allow full ksh
- compatiblity, i.e. the function myem(must) be in the second form
+ compatibility, i.e. the function myem(must) be in the second form
above. If that is not set, zsh tries to guess which form you are
using: if the file contains only a complete definition of the
function in the second form, and nothing else apart from comments
@@ -1936,7 +1936,7 @@ label(327)
operator. As the mytt(**) operator cannot be grouped (inside
parentheses it is treated as mytt(*)), this is one way to exclude some
subdirectories from matching a mytt(**). Note that this can be quite
- inefficent because the shell performs a complete search for
+ inefficient because the shell performs a complete search for
mytt(**/foo) before it uses the pattern after the mytt(~) to exclude
files from the match. The file is excluded if mytt(bar) occurs
em(anywhere), in any directory segment or the final file name.
@@ -2483,7 +2483,7 @@ label(52)
tt(unsubscribe) to unsubscribe. The mailing software (tt(ezlm)) has
various bells and whistles: you can retrieve archived messages.
Mail email(zsh-workers-help@zsh.org) for detailed information.
- Adminstrative matters are best sent to
+ Administrative matters are best sent to
email(zsh-workers-owner@zsh.org).
real name is email(Geoff Wing <gcw@zsh.org>).
diff --git a/Etc/zsh-development-guide b/Etc/zsh-development-guide
index ecbd3c081..cbada7de9 100644
--- a/Etc/zsh-development-guide
+++ b/Etc/zsh-development-guide
@@ -891,7 +891,7 @@ The wrapper function should be defined like:
The first two arguments should only be used to pass them to
`runshfunc()' which will execute the shell function. The last argument
is the name of the function to be executed. The arguments passed to
-the function can be accessed vie the global variable `pparams' (a
+the function can be accessed via the global variable `pparams' (a
NULL-terminated array of strings).
The return value of the wrapper function should be zero if it calls