From: Rainer Jung Date: Thu, 21 Jan 2016 20:18:57 +0000 (+0000) Subject: Fix typo in comment (s/patterm/pattern/). X-Git-Tag: 2.2.32~157 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3cdd09f4b50f2586ed4b0d37c5e1bf8d62aea9e7;p=thirdparty%2Fapache%2Fhttpd.git Fix typo in comment (s/patterm/pattern/). Backport of r1726086 from trunk resp. r1726087 from 2.4.x. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1726089 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/httpd.h b/include/httpd.h index 963d4acda49..2682247ec86 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -1619,7 +1619,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 1 if the two strings match, 0 otherwise @@ -1627,7 +1627,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