#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Fri, 07 Jun 2019 02:20:03 +0200
changeset 24277 96315a6ab1f3
parent 24276 f748df283009
child 24278 00a52d472419
#DOCUMENTATION by cg class: LimitedPrecisionReal comment/format in: #differenceFromFraction: #productFromFraction: #sumFromFraction:
LimitedPrecisionReal.st
--- a/LimitedPrecisionReal.st	Fri Jun 07 02:18:48 2019 +0200
+++ b/LimitedPrecisionReal.st	Fri Jun 07 02:20:03 2019 +0200
@@ -1229,18 +1229,22 @@
 !LimitedPrecisionReal methodsFor:'double dispatching'!
 
 differenceFromFraction:aFraction
-    "sent when a fraction does not know how to subtract the receiver, a float"
+    "sent when a fraction does not know how to subtract the receiver"
 
     |d|
 
     d := aFraction denominator.
     ^ (aFraction numerator - (self * d)) / d
+
+    "Modified (comment): / 07-06-2019 / 02:19:52 / Claus Gittinger"
 !
 
 productFromFraction:aFraction
-    "sent when a fraction does not know how to multiply the receiver, a float"
+    "sent when a fraction does not know how to multiply the receiver"
 
     ^ self * aFraction numerator / aFraction denominator
+
+    "Modified (comment): / 07-06-2019 / 02:19:47 / Claus Gittinger"
 !
 
 quotientFromFraction:aFraction
@@ -1251,12 +1255,14 @@
 !
 
 sumFromFraction:aFraction
-    "sent when a fraction does not know how to add the receiver, a float"
+    "sent when a fraction does not know how to add the receiver"
 
     |d|
 
     d := aFraction denominator.
     ^ (self * d + aFraction numerator) / d
+
+    "Modified (comment): / 07-06-2019 / 02:19:35 / Claus Gittinger"
 !
 
 sumFromTimestamp:aTimestamp