MeasurementValue.st
changeset 14008 581547d06ef3
parent 11726 074852a9f820
child 14445 925f19f04bf7
--- 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 $'
 ! !