]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
fix doc nit: ZDICT_DICTSIZE_MIN 4143/head
authorYann Collet <cyan@fb.com>
Thu, 19 Sep 2024 16:50:30 +0000 (09:50 -0700)
committerYann Collet <cyan@fb.com>
Thu, 19 Sep 2024 16:50:30 +0000 (09:50 -0700)
fix #4142

lib/zdict.h

index 2268f948a5d3e4c644e21f1a44de11bb2ef6ee34..bcccf750e64fe8b936fb5689b4dc42b5ad912bcb 100644 (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().