From: Rainer Jung Date: Thu, 21 Jan 2016 20:13:58 +0000 (+0000) Subject: Fix typo in comment (s/patterm/pattern/). X-Git-Tag: 2.5.0-alpha~2316 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f439615d29413d1e70f4d879d2ba28647c2f5fa8;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/include/httpd.h b/include/httpd.h index a3dcf4cec29..bf5262a7556 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 cb26e0549f2..d56bfd41bc9 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