From 7a48dc230c42ba4d779fab4e68da14f44c92a7b3 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Thu, 19 Sep 2024 09:50:30 -0700 Subject: [PATCH] fix doc nit: ZDICT_DICTSIZE_MIN fix #4142 --- lib/zdict.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(). -- 2.47.2