comparison libinterp/dldfcn/gzip.cc @ 27929:265b386f8b20

maint: Use two spaces between sentences in code comments. * Canvas.cc, Figure.cc, ObjectProxy.cc, documentation.cc, gui-preferences-sc.h, gui-settings.cc, file-editor-tab.cc, file-editor.cc, find-dialog.cc, octave-qscintilla.cc, main-window.cc, qt-interpreter-events.cc, resource-manager.cc, workspace-model.cc, gl2ps-print.cc, graphics.cc, ls-hdf5.cc, urlwrite.cc, __ode15__.cc, gzip.cc, pt-anon-scopes.cc, pt-jit.cc, DASPK.cc, url-transfer.cc: Use two spaces between sentences in code comments.
author Rik <rik@octave.org>
date Fri, 10 Jan 2020 12:10:13 -0800
parents bd51beb6205e
children c20b7290c778
comparison
equal deleted inserted replaced
27928:6804f2feea46 27929:265b386f8b20
222 // zlib is also a library but gzip is not. Very old versions of zlib do 222 // zlib is also a library but gzip is not. Very old versions of zlib do
223 // not include functions to create useful gzip headers and trailers: 223 // not include functions to create useful gzip headers and trailers:
224 // 224 //
225 // Note that you cannot specify special gzip header contents (e.g. 225 // Note that you cannot specify special gzip header contents (e.g.
226 // a file name or modification date), nor will inflate tell you what 226 // a file name or modification date), nor will inflate tell you what
227 // was in the gzip header. If you need to customize the header or 227 // was in the gzip header. If you need to customize the header or
228 // see what's in it, you can use the raw deflate and inflate 228 // see what's in it, you can use the raw deflate and inflate
229 // operations and the crc32() function and roll your own gzip 229 // operations and the crc32() function and roll your own gzip
230 // encoding and decoding. Read the gzip RFC 1952 for details of the 230 // encoding and decoding. Read the gzip RFC 1952 for details of the
231 // header and trailer format. 231 // header and trailer format.
232 // zlib FAQ 232 // zlib FAQ
233 // 233 //
234 // Recent versions (on which we are already dependent) have deflateInit2() 234 // Recent versions (on which we are already dependent) have deflateInit2()
235 // to do it. We still need to get the right metadata for the header 235 // to do it. We still need to get the right metadata for the header