Skip to content

Commit

Permalink
spelling error
Browse files Browse the repository at this point in the history
  • Loading branch information
circulosmeos committed Jul 12, 2021
1 parent 83cfca5 commit a03c5b4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Copy gztool.c to the directory where you compiled zlib, and do:
Usage
=====

gztool (v1.4)
gztool (v1.4.1)
GZIP files indexer, compressor and data retriever.
Create small indexes for gzipped files and use them
for quick and random-positioned data extraction.
Expand Down Expand Up @@ -144,7 +144,7 @@ Usage
-n #: indicates that the first byte on compressed input is #, not 1,
and so truncated compressed inputs can be used if an index exists.
-p: indicates that the gzip input stream may be composed of various
uncorrectly terminated GZIP streams, and so then a careful
incorrectly terminated GZIP streams, and so then a careful
Patching of the input may be needed to extract correct data.
-P: like `-p`, but when used with `-[ST]` implies that checking
for errors in stream is made as quick as possible as the gzip file
Expand Down Expand Up @@ -430,7 +430,7 @@ Other interesting links
Version
=======

This version is **v1.4**.
This version is **v1.4.1**.

Please, read the *Disclaimer*. In case of any errors, please open an [issue](https://github.com/circulosmeos/gztool/issues).

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([gztool], [1.4], [roberto.s.galende@gmail.com])
AC_INIT([gztool], [1.4.1], [roberto.s.galende@gmail.com])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PROG_CC
AC_PROG_CC_C99
Expand Down
4 changes: 2 additions & 2 deletions gztool.1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH gztool 1 "Jul 08 2021" "gztool v1.4"
.TH gztool 1 "Jul 13 2021" "gztool v1.4.1"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
Expand Down Expand Up @@ -122,7 +122,7 @@ and so truncated compressed inputs can be used if an index exists.
.TP
.BR \-p
indicates that the gzip input stream may be composed of various
uncorrectly terminated GZIP streams, and so then a careful
incorrectly terminated GZIP streams, and so then a careful
\fIPatching\fP of the input may be needed to extract correct data.
.TP
.BR \-P
Expand Down
4 changes: 2 additions & 2 deletions gztool.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
#include <config.h>
#else
#define PACKAGE_NAME "gztool"
#define PACKAGE_VERSION "1.4"
#define PACKAGE_VERSION "1.4.1"
#endif

#include <stdint.h> // uint32_t, uint64_t, UINT32_MAX
Expand Down Expand Up @@ -4790,7 +4790,7 @@ local void print_help() {
fprintf( stderr, " -n #: indicates that the first byte on compressed input is #, not 1,\n" );
fprintf( stderr, " and so truncated compressed inputs can be used if an index exists.\n" );
fprintf( stderr, " -p: indicates that the gzip input stream may be composed of various\n" );
fprintf( stderr, " uncorrectly terminated GZIP streams, and so then a careful\n" );
fprintf( stderr, " incorrectly terminated GZIP streams, and so then a careful\n" );
fprintf( stderr, " Patching of the input may be needed to extract correct data.\n" );
fprintf( stderr, " -P: like `-p`, but when used with `-[ST]` implies that checking\n" );
fprintf( stderr, " for errors in stream is made as quick as possible as the gzip file\n" );
Expand Down

0 comments on commit a03c5b4

Please sign in to comment.