#DOCUMENTATION by exept
authorClaus Gittinger <cg@exept.de>
Mon, 26 Aug 2019 10:24:59 +0200
changeset 24634 9dfe53da1a71
parent 24633 0da8519100ae
child 24635 650696402a40
#DOCUMENTATION by exept class: WriteStream comment/format in: #nextPutAll:startingAt:to:
WriteStream.st
--- a/WriteStream.st	Mon Aug 26 10:21:39 2019 +0200
+++ b/WriteStream.st	Mon Aug 26 10:24:59 2019 +0200
@@ -579,7 +579,8 @@
     |nMore final|
 
     collection isNil ifTrue:[
-        ^ super nextPutAll:aCollection startingAt:pos1 to:pos2
+        "/ will raise an error
+        ^ super nextPutAll:aCollection startingAt:pos1 to:pos2.
     ].
 
     nMore := pos2 - pos1 + 1.