diff options
author | Rainer Jung <rjung@apache.org> | 2016-01-21 21:13:58 +0100 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2016-01-21 21:13:58 +0100 |
commit | f439615d29413d1e70f4d879d2ba28647c2f5fa8 (patch) | |
tree | cea01f35b585d90581918564f7f66efa0c3f23fc | |
parent | remove 'binary' propset (diff) | |
download | apache2-f439615d29413d1e70f4d879d2ba28647c2f5fa8.tar.xz apache2-f439615d29413d1e70f4d879d2ba28647c2f5fa8.zip |
Fix typo in comment (s/patterm/pattern/).
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1726086 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | include/httpd.h | 4 | ||||
-rw-r--r-- | modules/lua/lua_request.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/httpd.h b/include/httpd.h index a3dcf4cec2..bf5262a755 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -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 diff --git a/modules/lua/lua_request.c b/modules/lua/lua_request.c index cb26e0549f..d56bfd41bc 100644 --- a/modules/lua/lua_request.c +++ b/modules/lua/lua_request.c @@ -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 |