#DOCUMENTATION by mawalch
authormawalch
Mon, 15 Aug 2016 15:26:16 +0200
changeset 20270 d2c92e7e2294
parent 20269 0d108b055dfc
child 20271 2ee56cbd6cfc
#DOCUMENTATION by mawalch class: ExternalStream comment/format in: #nextPutAll:from:startingAt:
ExternalStream.st
--- a/ExternalStream.st	Mon Aug 15 14:32:59 2016 +0200
+++ b/ExternalStream.st	Mon Aug 15 15:26:16 2016 +0200
@@ -6364,10 +6364,10 @@
 
 nextPutAll:initialWriteCount from:buffer startingAt:initialOffset
     "redefined, to wait until stream is writable, to avoid blocking in a write.
-     I don't know how to write non-bytes to a external stream, but let superclass handle this."
+     I don't know how to write non-bytes to an external stream, but let superclass handle this."
 
     buffer isByteCollection ifTrue:[
-	^ self nextPutBytes:initialWriteCount from:buffer startingAt:initialOffset.
+        ^ self nextPutBytes:initialWriteCount from:buffer startingAt:initialOffset.
     ].
 
     ^ super nextPutAll:initialWriteCount from:buffer startingAt:initialOffset