1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2026-01-03 20:51:07 +01:00

17503: fix various typos and spelling mistakes in source code comments

This commit is contained in:
Oliver Kiddle 2002-08-05 12:35:59 +00:00
parent ed89700265
commit af0697b705
16 changed files with 36 additions and 36 deletions

View file

@ -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 == '/';