update module doc comment

This commit is contained in:
Gered 2022-12-30 17:10:52 -05:00
parent 6ffa742d84
commit 39b0cd622c

View file

@ -11,9 +11,9 @@
//! resumes. //! resumes.
//! * The input "minimum_code_size" parameter for both encoding and decoding must be a bit size //! * The input "minimum_code_size" parameter for both encoding and decoding must be a bit size
//! between 2 and 8. //! between 2 and 8.
//! * Internally the code table is always initialized with 256 entries for each byte value, and //! * Internally the code table is always initialized with all entries needed for the minimum bit
//! then two extra special code values are added which are used by the GIF encoding process, //! size specified, plus two extra special code values are added which are used by the GIF
//! a "clear code" and an "end of information" code. //! encoding process, a "clear code" and an "end of information" code.
//! * The LZW-encoded stream always starts with a "clear code" and ends with an "end of information" //! * The LZW-encoded stream always starts with a "clear code" and ends with an "end of information"
//! code. The "clear code" may also appear at other times within the stream. //! code. The "clear code" may also appear at other times within the stream.