fix doc nit: ZDICT_DICTSIZE_MIN

fix #4142
This commit is contained in:
Yann Collet 2024-09-19 09:50:30 -07:00
parent 20707e3718
commit 7a48dc230c

View File

@ -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().