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.