#DOCUMENTATION by exept
authorClaus Gittinger <cg@exept.de>
Sun, 25 Aug 2019 14:52:12 +0200
changeset 5146 ad165bc9291c
parent 5145 8a1040ff7c87
child 5147 6da1e1943bcd
#DOCUMENTATION by exept class: Stack comment/format in: #push:
Stack.st
--- a/Stack.st	Sun Aug 25 13:46:59 2019 +0200
+++ b/Stack.st	Sun Aug 25 14:52:12 2019 +0200
@@ -119,7 +119,8 @@
 !
 
 push: anObject 
-    "Push anObject onto the top of the stack."
+    "Push anObject onto the top of the stack.
+     Return the pushed object."
 
     ^ self add:anObject
 !