comment
authorClaus Gittinger <cg@exept.de>
Tue, 14 Feb 2012 14:22:03 +0100
changeset 14008 581547d06ef3
parent 14007 1ee2f49e87df
child 14009 a2b68a9c9719
comment
MeasurementValue.st
--- a/MeasurementValue.st	Tue Feb 14 11:21:25 2012 +0100
+++ b/MeasurementValue.st	Tue Feb 14 14:22:03 2012 +0100
@@ -207,7 +207,7 @@
 !MeasurementValue methodsFor:'coercing & converting'!
 
 +/- error
-    "return a MeasurementValue with the given error."
+    "return a MeasurementValue with a given error."
 
     "/ what should I do here - take the new error,
     "/ or multiply them ????
@@ -215,6 +215,8 @@
 
     minValue := value - error.
     maxValue := value + error.
+
+    "Modified (comment): / 14-02-2012 / 14:17:39 / cg"
 !
 
 coerce:aNumber
@@ -313,5 +315,5 @@
 !MeasurementValue class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/MeasurementValue.st,v 1.10 2009-05-26 06:37:29 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/MeasurementValue.st,v 1.11 2012-02-14 13:22:03 cg Exp $'
 ! !