SignedWordArray.st
changeset 22272 ac4a1dcf494c
parent 20649 772b93b7f97a
child 23965 4f380840d33f
--- a/SignedWordArray.st	Tue Sep 19 16:39:56 2017 +0200
+++ b/SignedWordArray.st	Tue Sep 19 16:40:03 2017 +0200
@@ -40,7 +40,7 @@
 
 documentation
 "
-    SignedWordArrays store 16bit signed integers in the range -16r8000..16r7FFF.
+    SignedWordArrays store 16bit signed integers in the range 16r-8000..16r7FFF.
     They are much like WordArrays, but the values stored are signed.
     In contrast to normal arrays (which store pointers to their elements),
     signedWordArrays store the values in a dense & compact way. 
@@ -68,6 +68,7 @@
 "
 ! !
 
+
 !SignedWordArray class methodsFor:'queries'!
 
 elementByteSize
@@ -90,9 +91,12 @@
     "the minimum value which can be stored in instances of me.
      For SignedWordArrays, this is -16r8000 (smallest 16bit signed int)"
 
-    ^ -16r8000
+    ^ 16r-8000
+
+    "Modified (format): / 19-09-2017 / 16:31:41 / stefan"
 ! !
 
+
 !SignedWordArray class methodsFor:'documentation'!
 
 version