From ea4ea1dffafebaa8b2770bf3eca46900e4dd22dc Mon Sep 17 00:00:00 2001 From: Alexey Tourbin Date: Tue, 16 May 2017 23:56:35 +0300 Subject: [PATCH] Docs: Fix a typo in a comment in doc/examples/02_decompress.c. --- doc/examples/02_decompress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;