From: Rainer Jung Date: Thu, 21 Jan 2016 20:17:14 +0000 (+0000) Subject: Fix typo in comment (s/patterm/pattern/). X-Git-Tag: 2.4.19~270 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a63fc0dbd0761c8280fdb49d9859e940518c4e21;p=thirdparty%2Fapache%2Fhttpd.git Fix typo in comment (s/patterm/pattern/). 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 --- diff --git a/include/httpd.h b/include/httpd.h index 1cd71d66507..e61b6d99e65 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -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 diff --git a/modules/lua/lua_request.c b/modules/lua/lua_request.c index 4f8d39afd97..c59a3d082c1 100644 --- a/modules/lua/lua_request.c +++ b/modules/lua/lua_request.c @@ -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