comment/format in: #documentation
authorClaus Gittinger <cg@exept.de>
Wed, 01 Oct 2014 14:50:54 +0200
changeset 3354 fafc1522a85b
parent 3353 0a54e2d850aa
child 3355 92d0293365af
comment/format in: #documentation
RandomParkMiller.st
--- a/RandomParkMiller.st	Wed Oct 01 14:50:50 2014 +0200
+++ b/RandomParkMiller.st	Wed Oct 01 14:50:54 2014 +0200
@@ -11,6 +11,8 @@
 
 documentation
 "
+    Warning: this generator should not be used for cryptographic work.
+
     NO WARRANTY
 
     Another pseudo-random number generator
@@ -25,8 +27,6 @@
     In particular, bit aliasing occurs during the calculation of the next random value, 
     and bit 22 of the mantissa is always 1.
 
-    Warning: this generator should not be used for cryptographic work.
-
     Please read:
         Standard reference by Park and Miller in 
             'Random Number Generators: Good Ones Are Hard to Find',
@@ -137,11 +137,11 @@
 !RandomParkMiller class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/RandomParkMiller.st,v 1.6 2014-10-01 12:48:00 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/RandomParkMiller.st,v 1.7 2014-10-01 12:50:54 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/RandomParkMiller.st,v 1.6 2014-10-01 12:48:00 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/RandomParkMiller.st,v 1.7 2014-10-01 12:50:54 cg Exp $'
 ! !