diff options
Diffstat (limited to 'server/flate.go')
| -rw-r--r-- | server/flate.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/flate.go b/server/flate.go index e2d87f4..01becb6 100644 --- a/server/flate.go +++ b/server/flate.go @@ -8,9 +8,9 @@ import ( // the protocol requires us to send the level as a gzipped flat array. but our // level representation is close to run length encoding that can be achieved -// with DEFLATE. it is thus in theory significantly more CPU efficient to, -// instead of expanding out the RLE and compressing it with the generic -// compressor, translate it directly into DEFLATE +// with DEFLATE. it is thus significantly more CPU efficient to, instead of +// expanding out the RLE and compressing it with the generic compressor, +// translate it directly into DEFLATE func deflateRuns( wr io.Writer, runs []blockData, changes []blockData, levelSize uint32) (length uint32, err error) { |
