about summary refs log tree commit diff
path: root/Functions/Zle
diff options
context:
space:
mode:
Diffstat (limited to 'Functions/Zle')
-rw-r--r--Functions/Zle/forward-word-match2
-rw-r--r--Functions/Zle/match-words-by-style6
-rw-r--r--Functions/Zle/transpose-words-match2
3 files changed, 5 insertions, 5 deletions
diff --git a/Functions/Zle/forward-word-match b/Functions/Zle/forward-word-match
index 65bed784d..2a4165c0c 100644
--- a/Functions/Zle/forward-word-match
+++ b/Functions/Zle/forward-word-match
@@ -18,7 +18,7 @@ while (( count-- )); do
     match-words-by-style
 
     # For some reason forward-word doesn't work like the other word
-    # word commnds; it skips whitespace only after any matched word
+    # commands; it skips whitespace only after any matched word
     # characters.
 
     if [[ -n $matched_words[4] ]]; then
diff --git a/Functions/Zle/match-words-by-style b/Functions/Zle/match-words-by-style
index 9dcc165a9..0ca51d4fd 100644
--- a/Functions/Zle/match-words-by-style
+++ b/Functions/Zle/match-words-by-style
@@ -10,7 +10,7 @@
 # For example
 #    foo bar  rod stick
 #            ^
-# with the cursor where indicated whill with typical settings produce the
+# with the cursor where indicated will with typical settings produce the
 # elements `foo ', `bar', ` ', ` ', `rod', ` ' and `stick'.
 #
 # The style word-style can be set to indicate what a word is.
@@ -26,7 +26,7 @@
 #		treated as `normal', but this should not be relied upon.)
 #  specified    Similar to normal, except that only the words given
 #               in the string (and not also alphanumeric characters)
-#               are to be considerd parts of words.
+#               are to be considered parts of words.
 #  unspecified  The negation of `specified': the characters given
 #               are those that aren't to be considered parts of a word.
 #               They should probably include white space.
@@ -38,7 +38,7 @@
 #   zstyle ':zle:transpose-words*' word-style normal
 #   zstyle ':zle:transpose-words*' word-chars ''
 # will force bash-style word recognition, i.e only alphanumeric characters
-# are considerd parts of a word.  It is up to the function which calls
+# are considered parts of a word.  It is up to the function which calls
 # match-words-by-style to set the context in the variable curcontext,
 # else a default context will be used (not recommended).
 #
diff --git a/Functions/Zle/transpose-words-match b/Functions/Zle/transpose-words-match
index 6fb60a01d..6e12c4fa1 100644
--- a/Functions/Zle/transpose-words-match
+++ b/Functions/Zle/transpose-words-match
@@ -1,5 +1,5 @@
 # Transpose words, matching the words using match-words-by-style, q.v.
-# The group of word characters preceeding the cursor (not necessarily
+# The group of word characters preceding the cursor (not necessarily
 # immediately) are transposed with the group of word characters following
 # the cursor (again, not necessarily immediately).
 #