]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
minor comments
authorYann Collet <yann.collet.73@gmail.com>
Thu, 28 Jul 2016 22:55:45 +0000 (00:55 +0200)
committerYann Collet <yann.collet.73@gmail.com>
Thu, 28 Jul 2016 22:55:45 +0000 (00:55 +0200)
NEWS
lib/common/zbuff.h

diff --git a/NEWS b/NEWS
index 7221e461ccd051f0f7235adf36d645efd312d0cc..d525bc0ff3fc59eedb4dacd03fa07f57d856787f 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -3,7 +3,7 @@ Improved : better speed on clang and gcc -O2, thanks to Eric Biggers
 Changed : modified API : ZSTD_compressEnd()
 Fixed : legacy mode with ZSTD_HEAPMODE=0, by Christopher Bergqvist
 Fixed : premature end of frame when zero-sized raw block, reported by Eric Biggers
-Fixed : statistics for large dictionaries (> 128 KB), reported by Ilona Papava
+Fixed : statistics for large dictionaries (> 256 KB), reported by Ilona Papava
 Fixed : checksum correctly checked in single-pass mode
 Fixed : combined --test amd --rm, reported by Andreas M. Nilsson
 Modified : minor compression level adaptations
index f7db57302d4a42fa6585f41c3ae88569cb6d0461..269dc227c5eadca17225d1549a10edca0eb44112 100644 (file)
@@ -58,7 +58,9 @@ extern "C" {
 ***************************************/
 /* This is the easier "buffered" streaming API,
 *  using an internal buffer to lift all restrictions on user-provided buffers
-*  which can be any size, any place, for both input and output. */
+*  which can be any size, any place, for both input and output.
+*  ZBUFF and ZSTD are 100% interoperable,
+*  frames created by one can be decoded by the other one */
 
 typedef struct ZBUFF_CCtx_s ZBUFF_CCtx;
 ZSTDLIB_API ZBUFF_CCtx* ZBUFF_createCCtx(void);