MessageTally.st
changeset 236 7f570e0a0a75
parent 120 950e4628d657
child 244 42acac0f7b8c
--- a/MessageTally.st	Thu Apr 25 19:05:13 1996 +0200
+++ b/MessageTally.st	Thu Apr 25 19:12:40 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 Object subclass:#MessageTally
-	 instanceVariableNames:'process tree ntally theBlock spyInterval'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'System-Debugging-Support'
+	instanceVariableNames:'process tree ntally theBlock spyInterval'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'System-Debugging-Support'
 !
 
 !MessageTally class methodsFor:'documentation'!
@@ -40,9 +40,9 @@
     To get statistic, use 'MessageTally spyOn:aBlock'.
 
     example:
-	MessageTally spyOn:[
-	    (ByteArray uninitalizedNew:1000) sort
-	]
+        MessageTally spyOn:[
+            (ByteArray uninitalizedNew:1000) sort
+        ]
 
     By default, probing is done every 10ms (i.e. the execution of the block is 
     interrupted every 10ms, and the context chain analyzed).
@@ -50,6 +50,9 @@
     supports it). Try spyDetailedOn:aBlock, which tries to measure things
     every 1ms. (Notice, that some OS's only provide a resolution of less than
     that time interval)
+
+    [author:]
+        Claus Gittinger
 "
 !
 
@@ -274,5 +277,5 @@
 !MessageTally class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/MessageTally.st,v 1.17 1995-12-09 15:06:42 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/MessageTally.st,v 1.18 1996-04-25 17:11:32 cg Exp $'
 ! !