SequenceableCollection.st
changeset 21405 c8d42cd75d89
parent 21367 5ea4cffd7fd7
child 21462 75671c82df4a
--- a/SequenceableCollection.st	Sun Feb 12 11:48:15 2017 +0100
+++ b/SequenceableCollection.st	Sun Feb 12 12:34:34 2017 +0100
@@ -2443,8 +2443,7 @@
 !
 
 startsWith:aCollection
-    "return true, if the receiver's first elements match those
-     of aCollection
+    "return true, if the receiver's first elements match those of aCollection
      If the argument is empty, true is returned.
      Notice, that this is similar to, but slightly different from VW's and Squeak's beginsWith:,
      which are both inconsistent w.r.t. an empty argument."
@@ -2474,6 +2473,8 @@
      #(1 2 3 4) asOrderedCollection startsWith:#(1 2 3)
      #(1 2 3 4) asOrderedCollection startsWith:#()
     "
+
+    "Modified (comment): / 12-02-2017 / 11:19:40 / cg"
 !
 
 startsWithAnyOf:aCollectionOfCollections