comment
authorClaus Gittinger <cg@exept.de>
Fri, 11 Apr 2003 02:10:02 +0200
changeset 1748 0ad7db36c871
parent 1747 90a5fcae4b4b
child 1749 1f58fbcd4b96
comment
TIFFReader.st
--- a/TIFFReader.st	Fri Apr 11 01:42:19 2003 +0200
+++ b/TIFFReader.st	Fri Apr 11 02:10:02 2003 +0200
@@ -1477,12 +1477,12 @@
         ].
 
         "/ read it 4k-wise; this leads to a better behavior,
-        "/ when big images reading from a slow cdrom
+        "/ when reading big images from a slow device (such as a cdrom)
         inStream nextBytes:nBytes into:data startingAt:offset+1 blockSize:4096.
 
         offset := offset + nBytes.
         row := row + rowsPerStrip
-    ]
+    ].
 
     "Modified: / 12.8.1998 / 13:57:14 / cg"
 ! !
@@ -2220,7 +2220,7 @@
 !TIFFReader class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/TIFFReader.st,v 1.70 2003-04-10 14:25:54 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/TIFFReader.st,v 1.71 2003-04-11 00:10:02 cg Exp $'
 ! !
 
 TIFFReader initialize!