]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
minor markdown formatting fix
authorYann Collet <cyan@fb.com>
Tue, 26 May 2020 20:15:35 +0000 (13:15 -0700)
committerYann Collet <cyan@fb.com>
Tue, 26 May 2020 20:15:35 +0000 (13:15 -0700)
.gitignore
contrib/single_file_libs/.gitignore
doc/zstd_compression_format.md

index 96f8bdce8e04d88122d29f233bf9fa53c5922530..c927826ccbae3f72c25fb5f88b2616bc20e62318 100644 (file)
@@ -22,6 +22,7 @@ zstdmt
 
 # Test artefacts
 tmp*
+*.zst
 dictionary.
 dictionary
 NUL
index 054333f9b985fd63a0d217aac7ec332c8512facd..8c1bc71edd6d3357f8427a15185c11e4242537a7 100644 (file)
@@ -1,4 +1,9 @@
+
+# build artifacts
 zstddeclib.c
 zstdenclib.c
 zstd.c
 zstd.h
+
+# test artifacts
+temp*
index 8016aa8fc7dfb111c1cba759a95829b93edc85c5..1f15e444e75442238c851ed3689bac19f86e566e 100644 (file)
@@ -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].