about summary refs log tree commit diff
path: root/Src/pattern.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/pattern.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/pattern.c')
-rw-r--r--Src/pattern.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Src/pattern.c b/Src/pattern.c
index cf78a1138..33c8858a2 100644
--- a/Src/pattern.c
+++ b/Src/pattern.c
@@ -70,7 +70,7 @@ typedef union upat *Upat;
 
 #include "pattern.pro"
 
-/* Number of active parenthesised expressions allowed in backreferencing */
+/* Number of active parenthesized expressions allowed in backreferencing */
 #define NSUBEXP  9
 
 /* definition	number	opnd?	meaning */
@@ -119,7 +119,7 @@ typedef union upat *Upat;
  *
  *  P_ANY, P_ANYOF:  the operand is a null terminated
  *    string.  Normal characters match as expected.  Characters
- *    in the range Meta+PP_ALPHA..Meta+PP_UNKNWN do the approprate
+ *    in the range Meta+PP_ALPHA..Meta+PP_UNKNWN do the appropriate
  *    Posix range tests.  This relies on imeta returning true for these
  *    characters.  We treat unknown POSIX ranges as never matching.
  *    PP_RANGE means the next two (possibly metafied) characters form
@@ -448,7 +448,7 @@ patcompile(char *exp, int inflags, char **endexp)
 }
 
 /*
- * Main body or parenthesised subexpression in pattern
+ * Main body or parenthesized subexpression in pattern
  * Parenthesis (and any ksh_glob gubbins) will have been removed.
  */
 
@@ -830,7 +830,7 @@ patcomppiece(int *flagp)
     for (;;) {
 	/*
 	 * Check if we have a string. First, we need to make sure
-	 * the string doesn't introduce a ksh-like parenthesised expression.
+	 * the string doesn't introduce a ksh-like parenthesized expression.
 	 */
 	kshchar = '\0';
 	if (isset(KSHGLOB) && *patparse && patparse[1] == Inpar) {
@@ -1972,7 +1972,7 @@ patmatch(Upat prog)
 	     * This is just simple cases, matching one character.
 	     * With approximations, we still handle * this way, since
 	     * no approximation is ever necessary, but other closures
-	     * are handled by the more compicated branching method
+	     * are handled by the more complicated branching method
 	     */
 	    op = P_OP(scan);
 	    /* Note that no counts possibly metafied characters */