From: Christophe Jaillet Date: Fri, 25 May 2018 20:40:27 +0000 (+0000) Subject: Fix typo X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3cc71fb73dfbd85be74f1a8d63304bcc7186cc3d;p=apache Fix typo git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1832277 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/httpd.h b/include/httpd.h index d6a4bae22c..b734181864 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -2531,7 +2531,7 @@ AP_DECLARE(int) ap_array_str_contains(const apr_array_header_t *array, const char *s); /** - * Perform a case-insensitive comparison of two strings @a atr1 and @a atr2, + * Perform a case-insensitive comparison of two strings @a str1 and @a str2, * treating upper and lower case values of the 26 standard C/POSIX alphabetic * characters as equivalent. Extended latin characters outside of this set * are treated as unique octets, irrespective of the current locale. @@ -2545,7 +2545,7 @@ AP_DECLARE(int) ap_array_str_contains(const apr_array_header_t *array, AP_DECLARE(int) ap_cstr_casecmp(const char *s1, const char *s2); /** - * Perform a case-insensitive comparison of two strings @a atr1 and @a atr2, + * Perform a case-insensitive comparison of two strings @a str1 and @a str2, * treating upper and lower case values of the 26 standard C/POSIX alphabetic * characters as equivalent. Extended latin characters outside of this set * are treated as unique octets, irrespective of the current locale.