diff --git a/server/src/main/java/org/elasticsearch/index/codec/zstd/Zstd814StoredFieldsFormat.java b/server/src/main/java/org/elasticsearch/index/codec/zstd/Zstd814StoredFieldsFormat.java index daf046a0f8d8..b827bb6436f0 100644 --- a/server/src/main/java/org/elasticsearch/index/codec/zstd/Zstd814StoredFieldsFormat.java +++ b/server/src/main/java/org/elasticsearch/index/codec/zstd/Zstd814StoredFieldsFormat.java @@ -155,7 +155,7 @@ public Decompressor clone() { private static class ZstdCompressor extends Compressor { final int level; - // Buffer for copying between the DataInput and native memory. No hard science behind this number, it just tries to be high enough + // Buffer for copying between the DataInput and native memory. No hard science behind this number, it just tries to be high enough // to benefit from bulk copying and low enough to keep heap usage under control. final byte[] copyBuffer = new byte[4096];