From: Yann Collet Date: Thu, 19 Sep 2024 16:50:30 +0000 (-0700) Subject: fix doc nit: ZDICT_DICTSIZE_MIN X-Git-Tag: v1.5.7^2~90^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4143%2Fhead;p=thirdparty%2Fzstd.git fix doc nit: ZDICT_DICTSIZE_MIN fix #4142 --- diff --git a/lib/zdict.h b/lib/zdict.h index 2268f948a..bcccf750e 100644 --- a/lib/zdict.h +++ b/lib/zdict.h @@ -248,7 +248,7 @@ typedef struct { * is presumed that the most profitable content is at the end of the dictionary, * since that is the cheapest to reference. * - * `maxDictSize` must be >= max(dictContentSize, ZSTD_DICTSIZE_MIN). + * `maxDictSize` must be >= max(dictContentSize, ZDICT_DICTSIZE_MIN). * * @return: size of dictionary stored into `dstDictBuffer` (<= `maxDictSize`), * or an error code, which can be tested by ZDICT_isError().