]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
maint: fix spelling error in hacking
authorEric Blake <ebb9@byu.net>
Wed, 27 Jan 2010 13:33:58 +0000 (06:33 -0700)
committerMatthias Bolte <matthias.bolte@googlemail.com>
Fri, 29 Jan 2010 20:48:39 +0000 (21:48 +0100)
* HACKING: STRCASEEQ is case insensitive.
* docs/hacking.html.in: Likewise.

HACKING
docs/hacking.html.in

diff --git a/HACKING b/HACKING
index 0c65dada1f789f7610cc6c40650c726b6cf85f48..3844e50b80be4f133606e6a78e9b688c17ba44e8 100644 (file)
--- 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)
index 43a79f70ba089cbd25844ed12e89026cd31ddeca..96f6657cc6c7a1f119a46ef0fb47f8cf3933bc96 100644 (file)
 </pre>
       </li>
 
-      <li><p>For case sensitive equality:</p>
+      <li><p>For case insensitive equality:</p>
         <pre>
      STRCASEEQ(a,b)
      STRCASENEQ(a,b)
 </pre>
       </li>
 
-      <li><p>For case sensitive equality of a substring:</p>
+      <li><p>For case insensitive equality of a substring:</p>
 
         <pre>
      STRCASEEQLEN(a,b,n)