about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--Doc/Zsh/contrib.yo2
-rw-r--r--Doc/Zsh/mod_curses.yo2
-rw-r--r--Doc/Zsh/mod_zselect.yo2
-rw-r--r--Test/A05execution.ztst2
-rw-r--r--Test/C04funcdef.ztst2
6 files changed, 11 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 1331c1d10..b1f295bd7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2021-09-26  Daniel Shahaf  <d.s@daniel.shahaf.name>
+
+	* unposted: Doc/Zsh/contrib.yo, Doc/Zsh/mod_curses.yo,
+	Doc/Zsh/mod_zselect.yo, Test/A05execution.ztst,
+	Test/C04funcdef.ztst: Fix typos
+
 2021-09-22  Jun-ichi Takimoto  <takimoto-j@kba.biglobe.ne.jp>
 
 	* 49422: Src/Modules/parameter.c, Src/hashnameddir.c, Src/options.c,
diff --git a/Doc/Zsh/contrib.yo b/Doc/Zsh/contrib.yo
index 94059eff6..cbd850231 100644
--- a/Doc/Zsh/contrib.yo
+++ b/Doc/Zsh/contrib.yo
@@ -1941,7 +1941,7 @@ subsect(Installation)
 
 You should make sure all the functions from the tt(Functions/Prompts)
 directory of the source distribution are available; they all begin with
-the string `tt(prompt_)' except for the special function`tt(promptinit)'.
+the string `tt(prompt_)' except for the special function `tt(promptinit)'.
 You also need the `tt(colors)' and `tt(add-zsh-hook)' functions from
 tt(Functions/Misc).
 All these functions may already be installed on your system; if not,
diff --git a/Doc/Zsh/mod_curses.yo b/Doc/Zsh/mod_curses.yo
index 6e4831abe..e2d5690e2 100644
--- a/Doc/Zsh/mod_curses.yo
+++ b/Doc/Zsh/mod_curses.yo
@@ -157,7 +157,7 @@ input.  This is only available with the ncurses library; mouse handling
 can be detected by checking for the exit status of `tt(zcurses mouse)' with
 no arguments.  If a mouse
 button is clicked (or double- or triple-clicked, or pressed or released with
-a configurable delay from being clicked) then tt(kparam) is set to the string
+a configurable delay from being clicked) then var(kparam) is set to the string
 tt(MOUSE), and var(mparam) is set to an array consisting of the
 following elements:
 startitem()
diff --git a/Doc/Zsh/mod_zselect.yo b/Doc/Zsh/mod_zselect.yo
index e0651571e..faf59c165 100644
--- a/Doc/Zsh/mod_zselect.yo
+++ b/Doc/Zsh/mod_zselect.yo
@@ -12,7 +12,7 @@ The tt(zselect) builtin is a front-end to the `select' system call, which
 blocks until a file descriptor is ready for reading or writing, or has an
 error condition, with an optional timeout.  If this is not available on
 your system, the command prints an error message and returns status 2
-(normal errors return status 1).  For more information, see your systems
+(normal errors return status 1).  For more information, see your system's
 documentation for manref(select)(3).  Note there is no connection with the
 shell builtin of the same name.
 
diff --git a/Test/A05execution.ztst b/Test/A05execution.ztst
index c65642988..d95ee363c 100644
--- a/Test/A05execution.ztst
+++ b/Test/A05execution.ztst
@@ -258,7 +258,7 @@ F:side of a pipe to block on write after the right side has exited
    print -u $ZTST_fd "Skipping pipe leak test, requires MONITOR option"
    print "[0] 0 0"
   fi
-0:Bug regression: piping to anonymous function; piping to backround function
+0:Bug regression: piping to anonymous function; piping to background function
 *>\[<->\] <-> <->
 F:This test checks for two different bugs, a parser segfault piping to an
 F:anonymous function, and a descriptor leak when backgrounding a pipeline
diff --git a/Test/C04funcdef.ztst b/Test/C04funcdef.ztst
index 88321c432..af469c527 100644
--- a/Test/C04funcdef.ztst
+++ b/Test/C04funcdef.ztst
@@ -307,7 +307,7 @@
 # lsfoo should not be expanded as an anonymous function argument
  alias lsfoo='This is not ls.'
  () (echo anon func; echo "$@") lsfoo
-0:Anonmous function with arguments in a form nobody sane would ever use but unfortunately we have to support anyway
+0:Anonymous function with arguments in a form nobody sane would ever use but unfortunately we have to support anyway
 >anon func
 >lsfoo