From 3fc974209a15be5a5565e213b79374670d00d73e Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Wed, 27 Jan 2010 06:33:58 -0700 Subject: [PATCH] maint: fix spelling error in hacking * HACKING: STRCASEEQ is case insensitive. * docs/hacking.html.in: Likewise. --- HACKING | 4 ++-- docs/hacking.html.in | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HACKING b/HACKING index 0c65dada1f..3844e50b80 100644 --- a/HACKING +++ b/HACKING @@ -222,7 +222,7 @@ one of the following semantically named macros STREQ(a,b) STRNEQ(a,b) - - For case sensitive equality: + - For case insensitive equality: STRCASEEQ(a,b) STRCASENEQ(a,b) @@ -231,7 +231,7 @@ one of the following semantically named macros STREQLEN(a,b,n) STRNEQLEN(a,b,n) - - For case sensitive equality of a substring: + - For case insensitive equality of a substring: STRCASEEQLEN(a,b,n) STRCASENEQLEN(a,b,n) diff --git a/docs/hacking.html.in b/docs/hacking.html.in index 43a79f70ba..96f6657cc6 100644 --- a/docs/hacking.html.in +++ b/docs/hacking.html.in @@ -256,7 +256,7 @@ -
  • For case sensitive equality:

    +
  • For case insensitive equality:

          STRCASEEQ(a,b)
          STRCASENEQ(a,b)
    @@ -271,7 +271,7 @@
     
  • -
  • For case sensitive equality of a substring:

    +
  • For case insensitive equality of a substring:

          STRCASEEQLEN(a,b,n)