]> granicus.if.org Git - apache/commitdiff
Fix typo in comment (s/patterm/pattern/).
authorRainer Jung <rjung@apache.org>
Thu, 21 Jan 2016 20:13:58 +0000 (20:13 +0000)
committerRainer Jung <rjung@apache.org>
Thu, 21 Jan 2016 20:13:58 +0000 (20:13 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1726086 13f79535-47bb-0310-9956-ffa450edef68

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

index a3dcf4cec2951608bb3e47591746b56d14503eb4..bf5262a7556fbb7bd60737fc2e863e96bee4e630 100644 (file)
@@ -1904,7 +1904,7 @@ AP_DECLARE(int) ap_is_matchexp(const char *str)
                 AP_FN_ATTR_NONNULL_ALL;
 
 /**
- * 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
@@ -1913,7 +1913,7 @@ AP_DECLARE(int) ap_strcmp_match(const char *str, const char *expected)
                 AP_FN_ATTR_NONNULL_ALL;
 
 /**
- * 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 cb26e0549f276205612f306de48909e789fe4e9c..d56bfd41bc9f9aa8d70db20fbcefa71ffb83a1d1 100644 (file)
@@ -1647,7 +1647,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