It's really minor, but thought I'd mention it...
Document typo at sys::Zip.gzipInStream:
sys::Zip.gzipInStream
** ** Construct a new GZIP input stream which wraps the given output stream. ** static InStream gzipInStream(InStream out)
should be
** ** Construct a new GZIP input stream which wraps the given **input** stream. ** static InStream gzipInStream(InStream **in**)
Same goes for sys::Zip.read:
sys::Zip.read
const static Zip read(InStream **in**)
Thanks - I pushed a fix
Login or Signup to reply.
SlimerDude Tue 26 Mar 2013
It's really minor, but thought I'd mention it...
Document typo at
sys::Zip.gzipInStream
:should be
Same goes for
sys::Zip.read
:brian Tue 26 Mar 2013
Thanks - I pushed a fix