From 028163c42a1b4577ea2f2c8079e94ac332b557d7 Mon Sep 17 00:00:00 2001 From: Emmanuel Marty Date: Mon, 10 Jun 2019 14:10:57 +0200 Subject: [PATCH] Fix typo in final LZSA2 block format description --- BlockFormat_LZSA2.md | 1 - 1 file changed, 1 deletion(-) diff --git a/BlockFormat_LZSA2.md b/BlockFormat_LZSA2.md index 0c40dd4..15ec378 100644 --- a/BlockFormat_LZSA2.md +++ b/BlockFormat_LZSA2.md @@ -63,7 +63,6 @@ If the encoded match length is 7 or more, the 'M' bits in the token form the val If an extra byte follows here, it can have two possible types of value: -* 2-255: the final match length is this byte. * 0-231: 24 is added to the value (7 from the token + 15 from the nibble + minmatch of 2), to compose the final match length. For instance a length of 150 will be stored as 7 in the token + a nibble with the value of 15 + a single byte with the value of 126. * 233: a second and third byte follow, forming a little-endian 16-bit value. The final encoded match length is that 16-bit value.