#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Wed, 05 Jul 2017 10:47:39 +0200
changeset 4453 e3e421183576
parent 4452 9b6b7249be74
child 4454 f9079c08585a
#DOCUMENTATION by cg class: GeometricSeries class comment/format in: #documentation
GeometricSeries.st
--- a/GeometricSeries.st	Mon Jul 03 15:39:44 2017 +0200
+++ b/GeometricSeries.st	Wed Jul 05 10:47:39 2017 +0200
@@ -43,8 +43,9 @@
     GeometricSeries represent a collection (or range) of values specified by
     a startValue, an endValue and a *factor*. 
     Like with intervals, the elements are computed, not stored.
-    For example, the GeometricSeries (1 to:100 byFactor:2) contains the elements 
-    (1 2 4 8 16 32 64).
+    For example, 
+        the GeometricSeries (1 to:100 byFactor:2) contains the elements (1 2 4 8 16 32 64).
+        and GeometricSeries (1 to:(1/100) byFactor:(1/2)) contains the elements (1 1/2 1/4 1/8 1/16 1/32 1/64).
 
     examples: