]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix typo in comment (s/patterm/pattern/).
authorRainer Jung <rjung@apache.org>
Thu, 21 Jan 2016 20:18:57 +0000 (20:18 +0000)
committerRainer Jung <rjung@apache.org>
Thu, 21 Jan 2016 20:18:57 +0000 (20:18 +0000)
Backport of r1726086 from trunk
resp. r1726087 from 2.4.x.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1726089 13f79535-47bb-0310-9956-ffa450edef68

include/httpd.h

index 963d4acda49ece95d07834379b99deea686f5741..2682247ec86e518ef388989acbc3e23154566232 100644 (file)
@@ -1619,7 +1619,7 @@ AP_DECLARE(int) ap_os_is_path_absolute(apr_pool_t *p, const char *dir);
 AP_DECLARE(int) ap_is_matchexp(const char *str);
 
 /**
- * Determine if a string matches a patterm containing the wildcards '?' or '*'
+ * Determine if a string matches a pattern containing the wildcards '?' or '*'
  * @param str The string to check
  * @param expected The pattern to match against
  * @return 1 if the two strings match, 0 otherwise
@@ -1627,7 +1627,7 @@ AP_DECLARE(int) ap_is_matchexp(const char *str);
 AP_DECLARE(int) ap_strcmp_match(const char *str, const char *expected);
 
 /**
- * Determine if a string matches a patterm containing the wildcards '?' or '*',
+ * Determine if a string matches a pattern containing the wildcards '?' or '*',
  * ignoring case
  * @param str The string to check
  * @param expected The pattern to match against