diff --git a/README.md b/README.md index 3c79ae0..8ae0c2e 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ size_t compsize = streamvbyte_delta_encode(datain, N, compressedbuffer,0); // en streamvbyte_delta_decode(compressedbuffer, recovdata, N,0); // decoding (fast) ``` You have to know how many integers were coded when you decompress. You can store this -information along with the compressed stream. The +information along with the compressed stream. During decoding, the library may read up to `STREAMVBYTE_PADDING` extra bytes from the input buffer (these bytes are read but never used).