Object.st
changeset 2689 ada9b102abcf
parent 2673 f514189f6096
child 2704 3f56a3a9908a
--- a/Object.st	Mon Jun 16 11:57:37 1997 +0200
+++ b/Object.st	Mon Jun 16 20:21:41 1997 +0200
@@ -277,7 +277,7 @@
 
 abortSignal 
     "return the signal used to abort user actions. This signal is only
-     raised if cought (by the debugger), and will lead way out of the
+     raised if caught (by the debugger), and will lead way out of the
      currently active doIt/printIt or inspectIt. (also some others use
      this for a save abort)"
 
@@ -3229,7 +3229,7 @@
     "recursion limit (actually: stack overflow) interrupt.
      This interrupt is triggered, when a process stack grows above
      its stackLimit - usually, this leads into the debugger, but
-     could be cought and the stackLimit increased in the handler.
+     could be caught and the stackLimit increased in the handler.
      At the time we arrive here, the system has still some stack 
      as a reserve so we can continue to do some useful work or cleanup or
      debugging for a while.
@@ -3352,12 +3352,12 @@
 	    ('Object [error]: exit due to Signal ' , name , ' - and no debugger.') errorPrintCR.
 	    Smalltalk exit.
 	].
-	MiniDebugger enterWithMessage:'Signal cought (' , name, ')'.
+	MiniDebugger enterWithMessage:'Signal caught (' , name, ')'.
 	^ self
     ].
 
     box := OptionBox 
-		title:'Signal cought (' , name, ')'
+		title:'Signal caught (' , name, ')'
 		numberOfOptions:(ignorable ifTrue:[5] ifFalse:[4]).
 
     titles := #('return' 'debug' 'dump' 'exit').
@@ -5832,7 +5832,7 @@
 	    "/ a recursive error - quickly enter debugger
 	    "/ this happened, when I corrupted the Dialog class ...
 
-	    ('Object [error]: ' , ex errorString , ' cought in errorNotification') errorPrintCR.
+	    ('Object [error]: ' , ex errorString , ' caught in errorNotification') errorPrintCR.
 	    action := #debug.
 	    ex return.
 	] do:[
@@ -5992,6 +5992,6 @@
 !Object class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.195 1997-06-03 10:04:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.196 1997-06-16 18:20:55 cg Exp $'
 ! !
 Object initialize!