diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2020-03-23 18:07:50 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2020-03-23 18:07:50 +0200 |
commit | b8e12f5ab4c9fd3cb09a4330b2861f6b979ababd (patch) | |
tree | f7074aa35bf55f1ef5fc8361f93408af92dc9ba7 /doc | |
parent | Update NEWS for 5.2.5. (diff) | |
download | xz-b8e12f5ab4c9fd3cb09a4330b2861f6b979ababd.tar.xz |
Typo fixes from fossies.org.
https://fossies.org/linux/misc/xz-5.2.5.tar.xz/codespell.html
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/01_compress_easy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/01_compress_easy.c b/doc/examples/01_compress_easy.c index e6dd2b0c..ec32a379 100644 --- a/doc/examples/01_compress_easy.c +++ b/doc/examples/01_compress_easy.c @@ -173,7 +173,7 @@ compress(lzma_stream *strm, FILE *infile, FILE *outfile) lzma_ret ret = lzma_code(strm, action); // If the output buffer is full or if the compression finished - // successfully, write the data from the output bufffer to + // successfully, write the data from the output buffer to // the output file. if (strm->avail_out == 0 || ret == LZMA_STREAM_END) { // When lzma_code() has returned LZMA_STREAM_END, |