From feefd1ea5951f6f86c585130595f0bdda8b9b11e Mon Sep 17 00:00:00 2001 From: Peter Pentchev Date: Sat, 1 Jul 2023 19:49:56 +0300 Subject: [PATCH] Fix a minor grammar mistake. Forwarded: https://github.com/zchunk/zchunk/pull/47 Last-Update: 2023-07-01 Gbp-Pq: Name typos.patch --- README.md | 2 +- include/zck.h.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 93d278b..3ec4e8c 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ if you're creating a zchunk file that has any repetitive data, you may be able to reduce the overall file size by using a [zstd dictionary](https://facebook.github.io/zstd/#small-data). The dictionary takes up extra space at the beginning of the zchunk file, but is used as an identical initial dictionary for compressing each chunk, which can -give a significant overall savings. +give significant overall savings. It is important that all further revisions of the zchunk file use the same dictionary. If the dictionary changes, none of the chunks will match from the diff --git a/include/zck.h.in b/include/zck.h.in index d641b20..320650a 100644 --- a/include/zck.h.in +++ b/include/zck.h.in @@ -29,7 +29,7 @@ typedef enum zck_ioption { ZCK_VAL_HEADER_LENGTH, /* Set what the header length *should* be */ ZCK_UNCOMP_HEADER, /* Header should contain uncompressed size, too */ ZCK_NO_WRITE, /* Do not write to file when creating zck file - - Used to calculate header from existing umcompressed data */ + Used to calculate header from existing uncompressed data */ ZCK_COMP_TYPE = 100, /* Set compression type using zck_comp */ ZCK_MANUAL_CHUNK, /* Disable auto-chunking */ ZCK_CHUNK_MIN, /* Minimum chunk size when manual chunking */ -- 2.30.2