]> Cypherpunks repositories - gostls13.git/commitdiff
compress/flate: fix typo in comment
authorPreetam Jinka <pj@preet.am>
Wed, 1 Apr 2015 15:49:24 +0000 (11:49 -0400)
committerIan Lance Taylor <iant@golang.org>
Wed, 1 Apr 2015 16:48:04 +0000 (16:48 +0000)
Change-Id: I32ec2d8cb838fb850b3779726cf347dac21dff68
Reviewed-on: https://go-review.googlesource.com/8322
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/compress/flate/deflate.go

index 8c79df0c607d8e3415757dde544b9cacc68b8e11..169a0c7b2ebe4b169212e73ddc7a6539ee8f7ac6 100644 (file)
@@ -24,7 +24,7 @@ const (
        maxMatchLength     = 258 // The longest match for the compressor
        minOffsetSize      = 1   // The shortest offset that makes any sense
 
-       // The maximum number of tokens we put into a single flat block, just too
+       // The maximum number of tokens we put into a single flat block, just to
        // stop things from getting too large.
        maxFlateBlockTokens = 1 << 14
        maxStoreBlockSize   = 65535