diff options
author | Dimitri Papadopoulos Orfanos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2023-07-31 14:02:21 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2023-08-01 18:44:02 +0300 |
commit | 0db6fbe0be1545a4f25fcd6993371155b37bbb26 (patch) | |
tree | cea60902967897163026cbc7a37055114e431e1a /src/liblzma/api/lzma/lzma12.h | |
parent | Update .gitignore. (diff) | |
download | xz-0db6fbe0be1545a4f25fcd6993371155b37bbb26.tar.xz |
Docs: Fix typos found by codespell
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/api/lzma/lzma12.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liblzma/api/lzma/lzma12.h b/src/liblzma/api/lzma/lzma12.h index ad4ce7b1..8ef6ea5b 100644 --- a/src/liblzma/api/lzma/lzma12.h +++ b/src/liblzma/api/lzma/lzma12.h @@ -56,7 +56,7 @@ * * Usually you want this instead of LZMA1. Compared to LZMA1, LZMA2 adds * support for LZMA_SYNC_FLUSH, uncompressed chunks (smaller expansion - * when trying to compress uncompressible data), possibility to change + * when trying to compress incompressible data), possibility to change * lc/lp/pb in the middle of encoding, and some other internal improvements. */ #define LZMA_FILTER_LZMA2 LZMA_VLI_C(0x21) @@ -417,7 +417,7 @@ typedef struct { * like it is with LZMA_FILTER_LZMA1. Without this flag the * end marker isn't written and the application has to store * the uncompressed size somewhere outside the compressed stream. - * To decompress streams without the end marker, the appliation + * To decompress streams without the end marker, the application * has to set the correct uncompressed size in ext_size_low and * ext_size_high. * |