comments
authorClaus Gittinger <cg@exept.de>
Thu, 02 Oct 2014 18:23:19 +0200
changeset 3417 2568713fddf8
parent 3416 a71369580f84
child 3418 7f8549e6ebfe
comments
RandomMT19937.st
--- a/RandomMT19937.st	Thu Oct 02 18:23:16 2014 +0200
+++ b/RandomMT19937.st	Thu Oct 02 18:23:19 2014 +0200
@@ -357,7 +357,7 @@
 !RandomMT19937 methodsFor:'random numbers'!
 
 nextBoolean
-    "generates the next integer in 0..FFFFFFFF"
+    "generates a boolean random"
 
     ^ self nextInteger > 16r7FFFFFFF
 !
@@ -411,10 +411,10 @@
 !RandomMT19937 class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/RandomMT19937.st,v 1.6 2014-10-02 14:31:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/RandomMT19937.st,v 1.7 2014-10-02 16:23:19 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/RandomMT19937.st,v 1.6 2014-10-02 14:31:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/RandomMT19937.st,v 1.7 2014-10-02 16:23:19 cg Exp $'
 ! !