Skip to content

Commit 736a313

Browse files
committed
Doc header correction
1 parent 02bbff0 commit 736a313

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lib/zip_kit/streamer.rb

+6-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,12 @@
55
# Is used to write ZIP archives without having to read them back or to overwrite
66
# data. It outputs into any object that supports `<<` or `write`, namely:
77
#
8-
# An `Array`, `File`, `IO`, `Socket` and even `String` all can be output destinations
9-
# for the `Streamer`.
8+
# * `Array` - will contain binary strings
9+
# * `File` - data will be written to it as it gets generated
10+
# * `IO` (`Socket`, `StringIO`) - data gets written into it
11+
# , `IO`, `Socket` and even an unfrozen `String`...
12+
#
13+
# or anything else that responds to `#<<` or `#write`.
1014
#
1115
# You can also combine output through the `Streamer` with direct output to the destination,
1216
# all while preserving the correct offsets in the ZIP file structures. This allows usage

0 commit comments

Comments
 (0)