MeasurementValue.st
branchjv
changeset 17922 701184329b01
parent 17911 a99f15c5efa5
child 17976 50c2416f962a
--- a/MeasurementValue.st	Mon Feb 13 19:19:41 2012 +0000
+++ b/MeasurementValue.st	Tue Feb 14 22:03:08 2012 +0000
@@ -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,12 +315,13 @@
 !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 $'
 !
 
 version_SVN
-    ^ '$Id: MeasurementValue.st 10761 2012-01-19 11:46:00Z vranyj1 $'
+    ^ '$Id: MeasurementValue.st 10779 2012-02-14 22:03:08Z vranyj1 $'
 ! !
 
 
 
+