changed #topologicalSort - comment
authorStefan Vogel <sv@exept.de>
Tue, 02 Dec 2008 18:10:42 +0100
changeset 11385 c3d908e81ec7
parent 11384 ab037291f4fa
child 11386 5e4e1acf7242
changed #topologicalSort - comment
Collection.st
--- a/Collection.st	Tue Dec 02 18:10:07 2008 +0100
+++ b/Collection.st	Tue Dec 02 18:10:42 2008 +0100
@@ -3013,12 +3013,12 @@
     "
      #((1 2) (1 3) (3 2)) topologicalSort
      #((1 2) (1 3) (3 2) (4)) topologicalSort
-     #((1 1) (1 2) (1 3) (3 2) (4)) topologicalSort
 
     with cycles:
      #((1 2) (1 3) (3 1)) topologicalSort
      #((1 2) (2 3) (3 1)) topologicalSort
      #((1 2) (2 3) (3 4) (4 1)) topologicalSort
+     #((1 1) (1 2) (1 3) (3 2) (4)) topologicalSort
 
      (Smalltalk allClasses collect:[:eachClass| 
         Array with:eachClass superclass with:eachClass
@@ -3275,7 +3275,7 @@
 !Collection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.209 2008-12-02 17:10:07 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.210 2008-12-02 17:10:42 stefan Exp $'
 ! !
 
 Collection initialize!