]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
fix unbounded range 961/head
authorShawn Landden <slandden@gmail.com>
Fri, 22 Dec 2017 00:15:12 +0000 (16:15 -0800)
committerGitHub <noreply@github.com>
Fri, 22 Dec 2017 00:15:12 +0000 (16:15 -0800)
I think you meant 8 MiB or smaller, instead of an unbounded (and illogical) range

doc/zstd_compression_format.md

index 86a7ace916ab8cdae53edd28665ddffac6a54d06..7bf36c491dc631200f1925ddeaf143175d143775 100644 (file)
@@ -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,