diff --git a/kernel/FilePath.st b/kernel/FilePath.st index 1f4f2dc..765d4f2 100644 --- a/kernel/FilePath.st +++ b/kernel/FilePath.st @@ -647,8 +647,8 @@ size and timestamps.'> ] withReadStreamDo: aBlock [ - "Invoke aBlock with a reading stream open on me, closing it - when the dynamic extent of aBlock ends." + "Answer the result of invoking aBlock with a reading stream + open on me, closing it when the dynamic extent of aBlock ends." | stream | stream := self readStream. @@ -670,8 +670,8 @@ size and timestamps.'> ] withWriteStreamDo: aBlock [ - "Invoke aBlock with a writing stream open on me, closing it - when the dynamic extent of aBlock ends." + "Answer the result of invoking aBlock with a writing stream + open on me, closing it when the dynamic extent of aBlock ends." | stream | stream := self writeStream.