Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / libgo / go / compress / flate / deflate.go
index e511b50..d357fe3 100644 (file)
@@ -22,7 +22,7 @@ const (
        logMaxOffsetSize   = 15  // Standard DEFLATE
        minMatchLength     = 3   // The smallest match that the compressor looks for
        maxMatchLength     = 258 // The longest match for the compressor
-       minOffsetSize      = 1   // The shortest offset that makes any sence
+       minOffsetSize      = 1   // The shortest offset that makes any sense
 
        // The maximum number of tokens we put into a single flat block, just too
        // stop things from getting too large.