diff options
-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 |