UninterpretedBytes.st
changeset 19352 3c5b0c74be2e
parent 19351 07dede3d264c
child 19354 ec77be1507a3
child 19366 82606b52b3a0
--- a/UninterpretedBytes.st	Sun Mar 13 01:11:32 2016 +0100
+++ b/UninterpretedBytes.st	Sun Mar 13 02:12:33 2016 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1993 by Claus Gittinger
 	      All Rights Reserved
@@ -745,7 +743,7 @@
 longLongAt:index
     "return the 8-bytes starting at index as a signed Integer.
      The index is a smalltalk index (i.e. 1-based).
-     The value is retrieved in the machineÄs natural byte order.
+     The value is retrieved in the machineÄs natural byte order.
      This may be worth a primitive."
 
     ^ self signedInt64At:index MSB:IsBigEndian
@@ -1712,9 +1710,9 @@
     ^ (self byteAt:index) decodeFromBCD
 
     "
-     #[ 16r55 ] bcdByteAt:1
-     #[ 16r99] bcdByteAt:1
-     #[ 16rAA] bcdByteAt:1
+     #[ 16r55 ] bcdByteAt:1 
+     #[ 16r99 ] bcdByteAt:1  
+     #[ 16rAA ] bcdByteAt:1
     "
 
     "Modified (comment): / 26-09-2011 / 11:57:33 / cg"