diff --git a/envoy/extensions/compression/gzip/decompressor/v3/gzip.proto b/envoy/extensions/compression/gzip/decompressor/v3/gzip.proto index 0ab0d947..a0f4d8c1 100644 --- a/envoy/extensions/compression/gzip/decompressor/v3/gzip.proto +++ b/envoy/extensions/compression/gzip/decompressor/v3/gzip.proto @@ -20,8 +20,8 @@ option (udpa.annotations.file_status).package_version_status = ACTIVE; message Gzip { // Value from 9 to 15 that represents the base two logarithmic of the decompressor's window size. // The decompression window size needs to be equal or larger than the compression window size. - // The default is 12 to match the default in the - // :ref:`gzip compressor `. + // The default window size is 15. + // This is so that the decompressor can decompress a response compressed by a compressor with any compression window size. // For more details about this parameter, please refer to `zlib manual `_ > inflateInit2. google.protobuf.UInt32Value window_bits = 1 [(validate.rules).uint32 = {lte: 15 gte: 9}];