summaryrefslogtreecommitdiff
path: root/Functions/Zle/match-words-by-style
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2003-04-25 11:18:50 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2003-04-25 11:18:50 +0000
commita5f7097d9ab59d1fd9d21b1b22ac87c3e0877ffe (patch)
treeabf9f9bdf206887f87412f272066e0689f481c30 /Functions/Zle/match-words-by-style
parent83932ba23f06a467f33b4138484f7b0423660182 (diff)
downloadzsh-a5f7097d9ab59d1fd9d21b1b22ac87c3e0877ffe.tar.gz
zsh-a5f7097d9ab59d1fd9d21b1b22ac87c3e0877ffe.zip
18472: spelling corrections
Diffstat (limited to 'Functions/Zle/match-words-by-style')
-rw-r--r--Functions/Zle/match-words-by-style6
1 files changed, 3 insertions, 3 deletions
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).
#