UnitConverter.st
changeset 1294 07b05530726f
parent 1293 4504cf3db7d0
child 1295 d2eddb82f12b
--- a/UnitConverter.st	Tue Aug 19 12:03:53 2003 +0200
+++ b/UnitConverter.st	Tue Aug 19 12:04:27 2003 +0200
@@ -812,7 +812,8 @@
 
 fileSizeStringFor:nBytes
     "return a useful string for a size-in-bytes; 
-     returns Kb (*1024), Mb (*1024*1024) or Gb (*1024*1024*1024) as required and useful.
+     Scales by K (*1024), M (*1024*1024) or G (*1024*1024*1024) or even T
+     as required and useful.
      Provided here since this is so common..."
 
     |unitString n|
@@ -971,5 +972,5 @@
 !UnitConverter class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/UnitConverter.st,v 1.29 2003-08-19 10:03:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/UnitConverter.st,v 1.30 2003-08-19 10:04:27 cg Exp $'
 ! !