UninterpretedBytes.st
changeset 20816 986549374231
parent 20595 9ee758b143e9
child 20960 bdad938cfe9d
--- a/UninterpretedBytes.st	Fri Nov 04 16:24:48 2016 +0100
+++ b/UninterpretedBytes.st	Fri Nov 04 16:25:03 2016 +0100
@@ -429,7 +429,7 @@
     RETURN (false);
 # else
     /*
-     * I dont like ifdefs - you always forget some ...
+     * I don't like ifdefs - you always forget some ...
      * therefore we look into a structure at run-time.
      * (also, there are CPUs around [mips], where the byteorder
      *  is programmable, and which come in different flavours)
@@ -1499,7 +1499,7 @@
                 cp += idx;
 #if defined(__i386__)
                 /*
-                 * aligned or not, we dont care (i386 can do both)
+                 * aligned or not, we don't care (i386 can do both)
                  */
                 {
                     INT iVal = ((INT *)cp)[0];
@@ -3126,7 +3126,7 @@
                 } else {
 #if defined(__i386__) || (defined(UNALIGNED_FETCH_OK) && defined(__LSBFIRST__))
                     /*
-                     * aligned or not - we dont care
+                     * aligned or not - we don't care
                      * (i386 can fetch unaligned)
                      */
                     iVal = ((unsigned int *)cp)[0];
@@ -3393,7 +3393,7 @@
                 if (msb == false) {
 #if defined(__i386__) || (defined(__LSBFIRST__) && defined(UNALIGNED_FETCH_OK))
                     /*
-                     * aligned or not, we dont care (i386 can do both)
+                     * aligned or not, we don't care (i386 can do both)
                      */
                     sVal = ((short *)cp)[0];
 #else
@@ -3614,7 +3614,7 @@
                 if (msb == false) {
 #if defined(__i386__) || (defined(__LSBFIRST__) && defined(UNALIGNED_FETCH_OK))
                     /*
-                     * aligned or not, we dont care (i386 can do both)
+                     * aligned or not, we don't care (i386 can do both)
                      */
                     iVal = ((unsigned short *)cp)[0];
 #else