summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorDominique Pelle <dominique.pelle@tomtom.com>2022-07-31 15:47:00 (GMT)
committerDominique Pelle <dominique.pelle@tomtom.com>2022-07-31 15:47:00 (GMT)
commit33474853075599c69cb95b8312fe4981411fa346 (patch)
tree6e7e26af5985468629bd70439106a61db662acab /doc
parentd343a3685233f3c46c20bfeb7e8674de9d8175fc (diff)
downloadlz4-33474853075599c69cb95b8312fe4981411fa346.zip
lz4-33474853075599c69cb95b8312fe4981411fa346.tar.gz
lz4-33474853075599c69cb95b8312fe4981411fa346.tar.bz2
fix: various typos
Diffstat (limited to 'doc')
-rw-r--r--doc/lz4_Block_format.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lz4_Block_format.md b/doc/lz4_Block_format.md
index 8a4b083..9e80227 100644
--- a/doc/lz4_Block_format.md
+++ b/doc/lz4_Block_format.md
@@ -60,7 +60,7 @@ Example 2 : A literal length of 280 will be represented as :
- 15 : value for the 4-bits High field
- 255 : following byte is maxed, since 280-15 >= 255
- - 10 : (=280 - 15 - 255) ) remaining length to reach 280
+ - 10 : (=280 - 15 - 255) remaining length to reach 280
Example 3 : A literal length of 15 will be represented as :
@@ -239,6 +239,6 @@ searches and selects matches within the source data block.
For example, an upper compression limit can be reached,
using a technique called "full optimal parsing", at high cpu and memory cost.
But multiple other techniques can be considered,
-featuring distinct time / performance trade offs.
+featuring distinct time / performance trade-offs.
As long as the specified format is respected,
the result will be compatible with and decodable by any compliant decoder.