File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -331,7 +331,7 @@ PostgreSQL documentation
331331 can read. A directory format archive can be manipulated with
332332 standard Unix tools; for example, files in an uncompressed archive
333333 can be compressed with the <application>gzip</application> or
334- <application>lz4</application>tool .
334+ <application>lz4</application> tools .
335335 This format is compressed by default using <literal>gzip</literal>
336336 and also supports parallel dumps.
337337 </para>
@@ -654,8 +654,8 @@ PostgreSQL documentation
654654 <listitem>
655655 <para>
656656 Specify the compression method and/or the compression level to use.
657- The compression method can be set to <literal>gzip</literal> or
658- <literal>lz4</literal> or <literal>none</literal> for no compression.
657+ The compression method can be set to <literal>gzip</literal>,
658+ <literal>lz4</literal>, or <literal>none</literal> for no compression.
659659 A compression detail string can optionally be specified. If the
660660 detail string is an integer, it specifies the compression level.
661661 Otherwise, it should be a comma-separated list of items, each of the
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ struct CompressFileHandle
172172extern CompressFileHandle * InitCompressFileHandle (const pg_compress_specification compression_spec );
173173
174174/*
175- * Initialize a compress file stream. Deffer the compression algorithm
175+ * Initialize a compress file stream. Infer the compression algorithm
176176 * from 'path', either by examining its suffix or by appending the supported
177177 * suffixes in 'path'.
178178 */
Original file line number Diff line number Diff line change @@ -161,8 +161,8 @@ typedef struct LZ4File
161161} LZ4File ;
162162
163163/*
164- * LZ4 equivalent to feof() or gzeof(). The end of file is reached if there
165- * is no decompressed output in the overflow buffer and the end of the file
164+ * LZ4 equivalent to feof() or gzeof(). Return true iff there is no
165+ * decompressed output in the overflow buffer and the end of the backing file
166166 * is reached.
167167 */
168168static int
You can’t perform that action at this time.
0 commit comments