diff -r af7aeb79b25e -r 63f19c1157b6 True.st --- a/True.st Fri Feb 25 14:07:32 1994 +0100 +++ b/True.st Fri Feb 25 14:08:44 1994 +0100 @@ -24,7 +24,7 @@ Class True has only one instance, true, representing logical truth. -$Header: /cvs/stx/stx/libbasic/True.st,v 1.5 1994-01-09 21:25:44 claus Exp $ +$Header: /cvs/stx/stx/libbasic/True.st,v 1.6 1994-02-25 13:08:37 claus Exp $ '! !True methodsFor: 'logical operations'! @@ -114,7 +114,7 @@ !True methodsFor: 'printing'! printString - "return a Character sequence representing the receiver" + "return character sequence representing the receiver" ^ 'true' ! !