diff options
author | Nick Terrell <terrelln@fb.com> | 2018-07-10 18:44:03 (GMT) |
---|---|---|
committer | Nick Terrell <terrelln@fb.com> | 2018-07-10 18:44:03 (GMT) |
commit | 4eca78b5c3ee689425e3a547e7d2bdd246b89f43 (patch) | |
tree | dfc234dcf183df5bde7a00d9f6abcc493ce873cb /lib/lz4.h | |
parent | 1466e0b7f29176a1c1792ecc28fa64e29d5aaa69 (diff) | |
download | lz4-4eca78b5c3ee689425e3a547e7d2bdd246b89f43.zip lz4-4eca78b5c3ee689425e3a547e7d2bdd246b89f43.tar.gz lz4-4eca78b5c3ee689425e3a547e7d2bdd246b89f43.tar.bz2 |
Fix LZ4_compress_fast_continue() docs
Fixes #549.
Diffstat (limited to 'lib/lz4.h')
-rw-r--r-- | lib/lz4.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -266,7 +266,7 @@ LZ4LIB_API int LZ4_loadDict (LZ4_stream_t* streamPtr, const char* dictionary, in * 'dst' buffer must be already allocated. * If dstCapacity >= LZ4_compressBound(srcSize), compression is guaranteed to succeed, and runs faster. * - * Important : The previous 64KB of compressed data is assumed to remain present and unmodified in memory! + * Important : The previous 64KB of source data is assumed to remain present and unmodified in memory! * * Special 1 : When input is a double-buffer, they can have any size, including < 64 KB. * Make sure that buffers are separated by at least one byte. |