Stack.st
changeset 3447 e24ea4be432e
parent 1311 e20fa06ce5f8
child 3475 4295efd1e1ee
--- a/Stack.st	Mon Nov 24 19:12:02 2014 +0100
+++ b/Stack.st	Wed Nov 26 09:50:28 2014 +0100
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libbasic2' }"
 
 OrderedCollection subclass:#Stack
@@ -38,6 +37,7 @@
 documentation
 "
     A simple implementation of a Stack.
+
     Notice, this is simply syntactic sugar - all functionality is
     already provided by the OrderedCollection class 
     (addLast <==> push / removeLast <==> pop / last <==> top)
@@ -135,5 +135,6 @@
 !Stack class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Stack.st,v 1.7 2003-08-30 12:36:47 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Stack.st,v 1.8 2014-11-26 08:50:28 cg Exp $'
 ! !
+