]> granicus.if.org Git - apache/commitdiff
Fix typo in comment (s/patterm/pattern/).
authorRainer Jung <rjung@apache.org>
Thu, 21 Jan 2016 20:17:14 +0000 (20:17 +0000)
committerRainer Jung <rjung@apache.org>
Thu, 21 Jan 2016 20:17:14 +0000 (20:17 +0000)
Backport of r1726086 from trunk.

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

include/httpd.h
modules/lua/lua_request.c

index 1cd71d66507ff2139b8a7542a6028f3473e8a4c9..e61b6d99e65270fa335d029deff774609b123028 100644 (file)
@@ -1813,7 +1813,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 0 if the two strings match, 1 otherwise
@@ -1821,7 +1821,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
index 4f8d39afd973bb68fb0c0aca7ec77602197b1fd9..c59a3d082c1277d62287d36f0226bb3dc1a2e933 100644 (file)
@@ -1648,7 +1648,7 @@ static int lua_ap_escape_logitem(lua_State *L)
 
 /**
  * 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 '*'
  * @param str The string to check
  * @param expected The pattern to match against
  * @param ignoreCase Whether to ignore case when matching