From cd7517fb65910315463144e85a37ba6d17281b4c Mon Sep 17 00:00:00 2001 From: Emmanuel Marty Date: Mon, 1 Apr 2019 21:02:08 +0200 Subject: [PATCH] Fix typo in match offsets note --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2a43be2..c132e29 100755 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ If the 'O' bit (bit 7) is set in the token, the high 8 bits of the match offset **important note regarding match offsets: off by 1** -Note that the match offset is *off by 1*: a value of 0 refers to the byte preceding the current output index (N-1). A value of 1 refers to tow bytes before the current output index (N-2) and so on. This is so that match offsets up to 256 can be encoded as a single byte, for extra compression. +Note that the match offset is *off by 1*: a value of 0 refers to the byte preceding the current output index (N-1). A value of 1 refers to two bytes before the current output index (N-2) and so on. This is so that match offsets up to 256 can be encoded as a single byte, for extra compression. **optional extra encoded match length**