From 914d9838795c6d797a3a98e2cccf735ea1661f52 Mon Sep 17 00:00:00 2001 From: Shawn Landden Date: Thu, 21 Dec 2017 16:15:12 -0800 Subject: [PATCH] fix unbounded range I think you meant 8 MiB or smaller, instead of an unbounded (and illogical) range --- doc/zstd_compression_format.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/zstd_compression_format.md b/doc/zstd_compression_format.md index 86a7ace91..7bf36c491 100644 --- a/doc/zstd_compression_format.md +++ b/doc/zstd_compression_format.md @@ -257,7 +257,7 @@ a decoder is allowed to reject a compressed frame which requests a memory size beyond decoder's authorized range. For improved interoperability, -decoders are recommended to be compatible with `Window_Size >= 8 MB`, +decoders are recommended to be compatible with `Window_Size <= 8 MB`, and encoders are recommended to not request more than 8 MB. It's merely a recommendation though, decoders are free to support larger or lower limits,