diff options
author | Alexey Tourbin <alexey.tourbin@gmail.com> | 2017-05-16 23:56:35 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2017-05-23 18:46:49 +0300 |
commit | 0b0e1e6803456aac641a59332200f8e95e2b7ea8 (patch) | |
tree | 0273a7b17ca1b28affc8100b201f284d60aec318 | |
parent | xz: Fix "xz --list --robot missing_or_bad_file.xz". (diff) | |
download | xz-0b0e1e6803456aac641a59332200f8e95e2b7ea8.tar.xz |
Docs: Fix a typo in a comment in doc/examples/02_decompress.c.
Diffstat (limited to '')
-rw-r--r-- | doc/examples/02_decompress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/02_decompress.c b/doc/examples/02_decompress.c index 4c0f37cb..98339bef 100644 --- a/doc/examples/02_decompress.c +++ b/doc/examples/02_decompress.c @@ -138,7 +138,7 @@ decompress(lzma_stream *strm, const char *inname, FILE *infile, FILE *outfile) // Once the end of the input file has been reached, // we need to tell lzma_code() that no more input // will be coming. As said before, this isn't required - // if the LZMA_CONATENATED flag isn't used when + // if the LZMA_CONCATENATED flag isn't used when // initializing the decoder. if (feof(infile)) action = LZMA_FINISH; |