GeometricSeries.st
changeset 4453 e3e421183576
parent 3739 89ee5376197c
child 5058 6f3b933cae66
--- 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: