summaryrefslogtreecommitdiff
path: root/HACKING
diff options
context:
space:
mode:
authorEric Blake <ebb9@byu.net>2010-01-27 06:33:58 -0700
committerMatthias Bolte <matthias.bolte@googlemail.com>2010-01-29 21:48:39 +0100
commit3fc974209a15be5a5565e213b79374670d00d73e (patch)
tree8ec1c8d4cc95a01c3a407041ac0c52638b82b649 /HACKING
parent5ec55b4ff0ce49032caf2373dcda52e463b81a90 (diff)
downloadlibvirt-3fc974209a15be5a5565e213b79374670d00d73e.tar.gz
maint: fix spelling error in hacking
* HACKING: STRCASEEQ is case insensitive. * docs/hacking.html.in: Likewise.
Diffstat (limited to 'HACKING')
-rw-r--r--HACKING4
1 files changed, 2 insertions, 2 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)