comments
authorClaus Gittinger <cg@exept.de>
Thu, 24 Apr 2003 10:21:14 +0200
changeset 7232 1d05a293b8b0
parent 7231 5e1250b3f7f6
child 7233 52b21f304183
comments
ControlInterrupt.st
ControlRequest.st
PositionOutOfBoundsError.st
PrimitiveFailure.st
RecursionError.st
StreamError.st
SubclassResponsibilityError.st
SubscriptOutOfBoundsError.st
--- a/ControlInterrupt.st	Thu Apr 24 10:17:51 2003 +0200
+++ b/ControlInterrupt.st	Thu Apr 24 10:21:14 2003 +0200
@@ -11,7 +11,7 @@
 
 documentation
 "
-    parent of all control-related interrupts (halt, breakpoint etc.)
+    Parent of all control-related interrupts (halt, breakpoint etc.)
 "
 ! !
 
@@ -26,5 +26,5 @@
 !ControlInterrupt class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ControlInterrupt.st,v 1.3 2001-11-17 10:02:02 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ControlInterrupt.st,v 1.4 2003-04-24 08:21:07 cg Exp $'
 ! !
--- a/ControlRequest.st	Thu Apr 24 10:17:51 2003 +0200
+++ b/ControlRequest.st	Thu Apr 24 10:21:14 2003 +0200
@@ -11,12 +11,12 @@
 
 documentation
 "
-    parent of all control-related requests
+    Parent of all control-related requests
 "
 ! !
 
 !ControlRequest class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ControlRequest.st,v 1.1 2001-11-17 10:02:39 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ControlRequest.st,v 1.2 2003-04-24 08:21:14 cg Exp $'
 ! !
--- a/PositionOutOfBoundsError.st	Thu Apr 24 10:17:51 2003 +0200
+++ b/PositionOutOfBoundsError.st	Thu Apr 24 10:21:14 2003 +0200
@@ -11,12 +11,12 @@
 
 documentation
 "
-    raised when an invalid postioning operation is attempted 
+    Raised when an invalid postioning operation is attempted 
 "
 ! !
 
 !PositionOutOfBoundsError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/PositionOutOfBoundsError.st,v 1.1 2001-12-13 18:16:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/PositionOutOfBoundsError.st,v 1.2 2003-04-24 08:20:20 cg Exp $'
 ! !
--- a/PrimitiveFailure.st	Thu Apr 24 10:17:51 2003 +0200
+++ b/PrimitiveFailure.st	Thu Apr 24 10:21:14 2003 +0200
@@ -11,7 +11,7 @@
 
 documentation
 "
-    raised when a primitive C-code method failed to perform its operation
+    Raised when a primitive C-code method failed to perform its operation
     Typically, raised with bad arguments.
 "
 ! !
@@ -19,5 +19,5 @@
 !PrimitiveFailure class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/PrimitiveFailure.st,v 1.2 2001-11-17 10:04:51 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/PrimitiveFailure.st,v 1.3 2003-04-24 08:20:12 cg Exp $'
 ! !
--- a/RecursionError.st	Thu Apr 24 10:17:51 2003 +0200
+++ b/RecursionError.st	Thu Apr 24 10:21:14 2003 +0200
@@ -11,7 +11,7 @@
 
 documentation
 "
-    raised when the recursion level is too high - i.e. the execution stack
+    Raised when the recursion level is too high - i.e. the execution stack
     is about to overflow.
 "
 ! !
@@ -29,5 +29,5 @@
 !RecursionError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/RecursionError.st,v 1.3 2001-11-17 10:04:35 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/RecursionError.st,v 1.4 2003-04-24 08:20:14 cg Exp $'
 ! !
--- a/StreamError.st	Thu Apr 24 10:17:51 2003 +0200
+++ b/StreamError.st	Thu Apr 24 10:21:14 2003 +0200
@@ -11,12 +11,12 @@
 
 documentation
 "
-    the parent of all stream errors.
+    The parent of all stream errors.
 "
 ! !
 
 !StreamError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/StreamError.st,v 1.2 2001-11-17 10:04:09 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/StreamError.st,v 1.3 2003-04-24 08:20:17 cg Exp $'
 ! !
--- a/SubclassResponsibilityError.st	Thu Apr 24 10:17:51 2003 +0200
+++ b/SubclassResponsibilityError.st	Thu Apr 24 10:21:14 2003 +0200
@@ -11,7 +11,7 @@
 
 documentation
 "
-    raised when a method which should have been reimplemented by a
+    Raised when a method which should have been reimplemented by a
     concrete subclass was not, and the method of the abstract class was
     invoked instead.
 "
@@ -28,5 +28,5 @@
 !SubclassResponsibilityError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SubclassResponsibilityError.st,v 1.3 2001-11-17 10:04:39 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SubclassResponsibilityError.st,v 1.4 2003-04-24 08:20:18 cg Exp $'
 ! !
--- a/SubscriptOutOfBoundsError.st	Thu Apr 24 10:17:51 2003 +0200
+++ b/SubscriptOutOfBoundsError.st	Thu Apr 24 10:21:14 2003 +0200
@@ -11,7 +11,7 @@
 
 documentation
 "
-    raised when the index was ouf of a collections valid range for the index
+    Raised when the index was ouf of a collections valid range for the index
     (i.e. array index too high or less than 1)
 "
 ! !
@@ -19,5 +19,5 @@
 !SubscriptOutOfBoundsError class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SubscriptOutOfBoundsError.st,v 1.2 2001-11-17 10:04:26 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SubscriptOutOfBoundsError.st,v 1.3 2003-04-24 08:20:15 cg Exp $'
 ! !