summaryrefslogtreecommitdiffstats
path: root/doc/lz4_Frame_format.md
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2020-11-15 09:31:09 (GMT)
committerYann Collet <cyan@fb.com>2020-11-15 09:31:09 (GMT)
commit0760724577e7c62cfdc1de6ecae400ab653bb2bf (patch)
treecfe5c49ca9d600b94c9d763d07969d2dc660a1b6 /doc/lz4_Frame_format.md
parent0bd7dafc93bae758e86260a63a3f1efb4eac1d82 (diff)
downloadlz4-0760724577e7c62cfdc1de6ecae400ab653bb2bf.zip
lz4-0760724577e7c62cfdc1de6ecae400ab653bb2bf.tar.gz
lz4-0760724577e7c62cfdc1de6ecae400ab653bb2bf.tar.bz2
update doc
Diffstat (limited to 'doc/lz4_Frame_format.md')
-rw-r--r--doc/lz4_Frame_format.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lz4_Frame_format.md b/doc/lz4_Frame_format.md
index e7cbdbf..7e08841 100644
--- a/doc/lz4_Frame_format.md
+++ b/doc/lz4_Frame_format.md
@@ -263,7 +263,7 @@ This field uses 4-bytes, format is little-endian.
If the highest bit is set (`1`), the block is uncompressed.
If the highest bit is not set (`0`), the block is LZ4-compressed,
-using the [LZ4 block format specification](https://github.com/lz4/lz4/blob/master/doc/lz4_Block_format.md).
+using the [LZ4 block format specification](https://github.com/lz4/lz4/blob/dev/doc/lz4_Block_format.md).
All other bits give the size, in bytes, of the data section.
The size does not include the block checksum if present.
@@ -284,7 +284,7 @@ __Data__
Where the actual data to decode stands.
It might be compressed or not, depending on previous field indications.
-When compressed, the data must respect the [LZ4 block format specification](https://github.com/lz4/lz4/blob/master/doc/lz4_Block_format.md).
+When compressed, the data must respect the [LZ4 block format specification](https://github.com/lz4/lz4/blob/dev/doc/lz4_Block_format.md).
Note that a block is not necessarily full.
Uncompressed size of data can be any size __up to__ _Block_Maximum_Size_,