From: Yann Collet Date: Tue, 8 Dec 2015 13:47:46 +0000 (+0100) Subject: fixed comment (reported by @annulen) X-Git-Tag: v0.4.4^2~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0cde77bc5ec1f75e09c28b6b794c2ea73e5e4e8e;p=thirdparty%2Fzstd.git fixed comment (reported by @annulen) --- diff --git a/lib/zstd_static.h b/lib/zstd_static.h index 5c3156248..2f2352f65 100644 --- a/lib/zstd_static.h +++ b/lib/zstd_static.h @@ -120,7 +120,7 @@ size_t ZSTD_compressEnd(ZSTD_CCtx* cctx, void* dst, size_t maxDstSize); Use ZSTD_compressBegin(). You may also prefer the advanced derivative ZSTD_compressBegin_advanced(), for finer parameter control. - It's then possible to add a dictionary with ZSTD_compressDictionary() + It's then possible to add a dictionary with ZSTD_compress_insertDictionary() Note that dictionary presence is a "hidden" information, the decoder needs to be aware that it is required for proper decoding, or decoding will fail.