From 11a392ce23a2341b4cd815f43c84187190eace5e Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Tue, 26 May 2020 13:15:35 -0700 Subject: [PATCH] minor markdown formatting fix --- .gitignore | 1 + contrib/single_file_libs/.gitignore | 5 +++++ doc/zstd_compression_format.md | 16 ++++++++-------- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 96f8bdce..c927826c 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ zstdmt # Test artefacts tmp* +*.zst dictionary. dictionary NUL diff --git a/contrib/single_file_libs/.gitignore b/contrib/single_file_libs/.gitignore index 054333f9..8c1bc71e 100644 --- a/contrib/single_file_libs/.gitignore +++ b/contrib/single_file_libs/.gitignore @@ -1,4 +1,9 @@ + +# build artifacts zstddeclib.c zstdenclib.c zstd.c zstd.h + +# test artifacts +temp* diff --git a/doc/zstd_compression_format.md b/doc/zstd_compression_format.md index 8016aa8f..1f15e444 100644 --- a/doc/zstd_compression_format.md +++ b/doc/zstd_compression_format.md @@ -1418,16 +1418,16 @@ __`Dictionary_ID`__ : 4 bytes, stored in __little-endian__ format. It's used by decoders to check if they use the correct dictionary. _Reserved ranges :_ - If the dictionary is going to be distributed in a public environment, - the following ranges of `Dictionary_ID` are reserved for some future registrar - and shall not be used : +If the dictionary is going to be distributed in a public environment, +the following ranges of `Dictionary_ID` are reserved for some future registrar +and shall not be used : - - low range : <= 32767 - - high range : >= (2^31) + - low range : <= 32767 + - high range : >= (2^31) - Outside of these ranges, any value of `Dictionary_ID` - which is both `>= 32768` and `< (1<<31)` can be used freely, - even in public environment. +Outside of these ranges, any value of `Dictionary_ID` +which is both `>= 32768` and `< (1<<31)` can be used freely, +even in public environment. __`Entropy_Tables`__ : follow the same format as tables in [compressed blocks].