diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2010-02-12 13:16:15 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2010-02-12 13:16:15 +0200 |
commit | eb7d51a3faf9298c0c7aa9aaeae1023dcf9e37ea (patch) | |
tree | a95a2fd8ca357e637918ee82b154f56416da7410 /src/liblzma/lzma/lzma2_encoder.c | |
parent | Fix jl -> jb in ASM files. (diff) | |
download | xz-eb7d51a3faf9298c0c7aa9aaeae1023dcf9e37ea.tar.xz |
Collection of language fixes to comments and docs.
Thanks to Jonathan Nieder.
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/lzma/lzma2_encoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/lzma/lzma2_encoder.c b/src/liblzma/lzma/lzma2_encoder.c index eda4aa9f..1e0569a4 100644 --- a/src/liblzma/lzma/lzma2_encoder.c +++ b/src/liblzma/lzma/lzma2_encoder.c @@ -169,7 +169,7 @@ lzma2_encode(lzma_coder *restrict coder, lzma_mf *restrict mf, uint32_t limit; if (left < mf->match_len_max) { - // Must flush immediatelly since the next LZMA symbol + // Must flush immediately since the next LZMA symbol // could make the uncompressed size of the chunk too // big. limit = 0; |