diff options
Diffstat (limited to 'src/common/torgzip.c')
-rw-r--r-- | src/common/torgzip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/torgzip.c b/src/common/torgzip.c index e1028293a3..5a1e1e8a0b 100644 --- a/src/common/torgzip.c +++ b/src/common/torgzip.c @@ -299,8 +299,8 @@ detect_compression_method(const char *in, size_t in_len) } } -/** Internal state for a incremental zlib compression/decompression. The body - * of this struct is not exposed. */ +/** Internal state for an incremental zlib compression/decompression. The + * body of this struct is not exposed. */ struct tor_zlib_state_t { struct z_stream_s stream; int compress; @@ -308,7 +308,7 @@ struct tor_zlib_state_t { /** Construct and return a tor_zlib_state_t object using <b>method</b>. If * <b>compress</b>, it's for compression; otherwise it's for - * decompression. */ + * decompression. */ tor_zlib_state_t * tor_zlib_new(int compress, compress_method_t method) { |