From: Nick Terrell Date: Tue, 10 Jul 2018 18:44:03 +0000 (-0700) Subject: Fix LZ4_compress_fast_continue() docs X-Git-Tag: upstream/1.9.3~7^2~13^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4eca78b5c3ee689425e3a547e7d2bdd246b89f43;p=platform%2Fupstream%2Flz4.git Fix LZ4_compress_fast_continue() docs Fixes #549. --- diff --git a/lib/lz4.h b/lib/lz4.h index 7d13122..64914ab 100644 --- a/lib/lz4.h +++ b/lib/lz4.h @@ -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.