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/xz/main.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 'src/xz/main.c')
-rw-r--r-- | src/xz/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xz/main.c b/src/xz/main.c index c5330039..e0905893 100644 --- a/src/xz/main.c +++ b/src/xz/main.c @@ -46,7 +46,7 @@ static const char * read_name(const args_info *args) { // FIXME: Maybe we should have some kind of memory usage limit here - // like the tool has for the actual compression and uncompression. + // like the tool has for the actual compression and decompression. // Giving some huge text file with --files0 makes us to read the // whole file in RAM. static char *name = NULL; @@ -188,7 +188,7 @@ main(int argc, char **argv) if (opt_mode != MODE_LIST) signals_init(); - // coder_run() handles compression, decopmression, and testing. + // coder_run() handles compression, decompression, and testing. // list_file() is for --list. void (*run)(const char *filename) = opt_mode == MODE_LIST ? &list_file : &coder_run; @@ -226,7 +226,7 @@ main(int argc, char **argv) args.arg_names[i] = (char *)stdin_filename; } - // Do the actual compression or uncompression. + // Do the actual compression or decompression. run(args.arg_names[i]); } |