Fixes comments related to OgHttp2Session compression options.

PiperOrigin-RevId: 836343384
diff --git a/quiche/http2/adapter/oghttp2_session.h b/quiche/http2/adapter/oghttp2_session.h
index 363f0ce..a120b15 100644
--- a/quiche/http2/adapter/oghttp2_session.h
+++ b/quiche/http2/adapter/oghttp2_session.h
@@ -94,8 +94,8 @@
     // Specifies the behavior of the HPACK encoder when compressing headers.
     enum CompressionOption {
       ENABLE_COMPRESSION,   // Dynamic table enabled, Huffman enabled.
-      DISABLE_COMPRESSION,  // Dynamic table enabled, Huffman disabled.
-      DISABLE_HUFFMAN,      // Dynamic table disabled, Huffman disabled.
+      DISABLE_COMPRESSION,  // Dynamic table disabled, Huffman disabled.
+      DISABLE_HUFFMAN,      // Dynamic table enabled, Huffman disabled.
     };
     CompressionOption compression_option = ENABLE_COMPRESSION;
   };