about summary refs log tree commit diff
path: root/Src/glob.c
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2002-08-05 12:35:59 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2002-08-05 12:35:59 +0000
commitaf0697b70533b6e40c92180a7523c16cf49798e9 (patch)
tree07c26a527bd6b6670c75f729915888031900993b /Src/glob.c
parented89700265c129983a6badca26b35eb62bb5dd70 (diff)
downloadzsh-af0697b70533b6e40c92180a7523c16cf49798e9.tar.gz
zsh-af0697b70533b6e40c92180a7523c16cf49798e9.tar.xz
zsh-af0697b70533b6e40c92180a7523c16cf49798e9.zip
17503: fix various typos and spelling mistakes in source code comments
Diffstat (limited to 'Src/glob.c')
-rw-r--r--Src/glob.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/glob.c b/Src/glob.c
index 8caa70ba5..ee23aa669 100644
--- a/Src/glob.c
+++ b/Src/glob.c
@@ -355,7 +355,7 @@ insert(char *s, int checked)
 
     while (!inserts || (news = dupstring(*inserts++))) {
 	if (colonmod) {
-	    /* Handle the remainder of the qualifer:  e.g. (:r:s/foo/bar/). */
+	    /* Handle the remainder of the qualifier:  e.g. (:r:s/foo/bar/). */
 	    s = colonmod;
 	    modify(&news, &s);
 	}
@@ -685,7 +685,7 @@ parsecomplist(char *instr)
 	/* parse single path component */
 	if (!(p1 = patcompile(instr, compflags|PAT_FILET, &instr)))
 	    return NULL;
-	/* then do the remaining path compoents */
+	/* then do the remaining path components */
 	if (*instr == '/' || !*instr) {
 	    int ef = *instr == '/';