From 381344bc8ec28ec8045a83f63c20a285ad4c1a67 Mon Sep 17 00:00:00 2001 From: ArrayRecord Team Date: Mon, 17 Mar 2025 13:56:52 -0700 Subject: [PATCH] Fix typo in comment. PiperOrigin-RevId: 737741324 --- cpp/array_record_writer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/array_record_writer.cc b/cpp/array_record_writer.cc index ac05c21..ef722af 100644 --- a/cpp/array_record_writer.cc +++ b/cpp/array_record_writer.cc @@ -69,7 +69,7 @@ constexpr uint32_t kZstdDefaultWindowLog = 20; // Generated from `echo 'ArrayRecord' | md5sum | cut -b 1-16` constexpr uint64_t kMagic = 0x71930e704fdae05eULL; -// zstd:3 gives a good trade-off for both the compression and decomopression +// zstd:3 gives a good trade-off for both the compression and decompression // speed. constexpr char kArrayRecordDefaultCompression[] = "zstd:3";