diff options
author | Yann Collet <yann.collet.73@gmail.com> | 2015-05-07 12:03:07 (GMT) |
---|---|---|
committer | Yann Collet <yann.collet.73@gmail.com> | 2015-05-07 12:03:07 (GMT) |
commit | 96078481d7672b427aa9b088af74b3f920f9d11e (patch) | |
tree | ed8740caaabc3769d34cbe2e13388bb67e0bf43a | |
parent | 45e1995c4051ce47fe846d2ada7beed0a0be9c7c (diff) | |
download | lz4-96078481d7672b427aa9b088af74b3f920f9d11e.zip lz4-96078481d7672b427aa9b088af74b3f920f9d11e.tar.gz lz4-96078481d7672b427aa9b088af74b3f920f9d11e.tar.bz2 |
Fixed minor typo
-rw-r--r-- | lz4_Frame_format.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lz4_Frame_format.md b/lz4_Frame_format.md index cb41d47..e8aa08f 100644 --- a/lz4_Frame_format.md +++ b/lz4_Frame_format.md @@ -211,7 +211,7 @@ It can be safely skipped by a conformant decoder. __Header Checksum__ One-byte checksum of combined descriptor fields, including optional ones. -The value is the second byte of xxh32() : ` (xxh32()>>8) & 0xFF } ` +The value is the second byte of xxh32() : ` (xxh32()>>8) & 0xFF ` using zero as a seed, and the full Frame Descriptor as an input (including optional fields when they are present). |