diff options
author | Dominique Pelle <dominique.pelle@tomtom.com> | 2022-07-31 15:47:00 (GMT) |
---|---|---|
committer | Dominique Pelle <dominique.pelle@tomtom.com> | 2022-07-31 15:47:00 (GMT) |
commit | 33474853075599c69cb95b8312fe4981411fa346 (patch) | |
tree | 6e7e26af5985468629bd70439106a61db662acab /programs | |
parent | d343a3685233f3c46c20bfeb7e8674de9d8175fc (diff) | |
download | lz4-33474853075599c69cb95b8312fe4981411fa346.zip lz4-33474853075599c69cb95b8312fe4981411fa346.tar.gz lz4-33474853075599c69cb95b8312fe4981411fa346.tar.bz2 |
fix: various typos
Diffstat (limited to 'programs')
-rw-r--r-- | programs/bench.c | 2 | ||||
-rw-r--r-- | programs/lz4cli.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/programs/bench.c b/programs/bench.c index 5a56e6f..4d35ef9 100644 --- a/programs/bench.c +++ b/programs/bench.c @@ -409,7 +409,7 @@ static int BMK_benchMem(const void* srcBuffer, size_t srcSize, remaining -= thisBlockSize; } } } - /* warmimg up memory */ + /* warming up memory */ RDG_genBuffer(compressedBuffer, maxCompressedSize, 0.10, 0.50, 1); /* decode-only mode : copy input to @compressedBuffer */ diff --git a/programs/lz4cli.c b/programs/lz4cli.c index 51969fd..8c3f9fd 100644 --- a/programs/lz4cli.c +++ b/programs/lz4cli.c @@ -186,7 +186,7 @@ static int usage_longhelp(const char* exeName) DISPLAY( "\n"); DISPLAY( "Compression levels : \n"); DISPLAY( "---------------------\n"); - DISPLAY( "-0 ... -2 => Fast compression, all identicals\n"); + DISPLAY( "-0 ... -2 => Fast compression, all identical\n"); DISPLAY( "-3 ... -%d => High compression; higher number == more compression but slower\n", LZ4HC_CLEVEL_MAX); DISPLAY( "\n"); DISPLAY( "stdin, stdout and the console : \n"); |