]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
fixed comment (reported by @annulen)
authorYann Collet <yann.collet.73@gmail.com>
Tue, 8 Dec 2015 13:47:46 +0000 (14:47 +0100)
committerYann Collet <yann.collet.73@gmail.com>
Tue, 8 Dec 2015 13:47:46 +0000 (14:47 +0100)
lib/zstd_static.h

index 5c315624879c4084b10c77ff5e6c0651332c0dd2..2f2352f65f50b79fe747b5173d2156e8fbd3448f 100644 (file)
@@ -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.