#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Wed, 23 May 2018 14:55:33 +0200
changeset 22997 1c2629bf2cac
parent 22996 779c5f211e30
child 22998 597975de8f85
#BUGFIX by cg class: TimeDuration changed: #formatForPrinting:
TimeDuration.st
--- a/TimeDuration.st	Wed May 23 12:48:20 2018 +0200
+++ b/TimeDuration.st	Wed May 23 14:55:33 2018 +0200
@@ -1897,7 +1897,7 @@
                     ] ifFalse:[
                         overAllMicros := self microseconds.
                         overAllMicros > 2 ifTrue:[
-                            fmt := fmt , '%(micro)us'.
+                            fmt := fmt , '%(micro)µs'.
                         ] ifFalse:[
                             overAllNanos := self nanoseconds.
                             overAllNanos > 2 ifTrue:[
@@ -1988,6 +1988,7 @@
 
     "Modified: / 18-07-2007 / 14:06:17 / cg"
     "Modified (comment): / 17-05-2017 / 16:35:56 / mawalch"
+    "Modified: / 23-05-2018 / 10:36:21 / Claus Gittinger"
 !
 
 getHours