Skip to content

Commit 56d3381

Browse files
committed
update comments
1 parent 018dbb5 commit 56d3381

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

turbopack/crates/turbo-persistence/src/static_sorted_file_builder.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ const AMQF_FALSE_POSITIVE_RATE: f64 = 0.01;
3535
const KEY_COMPRESSION_DICTIONARY_SIZE: usize = 64 * 1024 - 1;
3636
/// The maximum bytes that should be selected as key samples to create a compression dictionary
3737
const KEY_COMPRESSION_SAMPLES_SIZE: usize = 256 * 1024;
38-
/// The minimum bytes that should be selected as value samples. Below that no compression dictionary
38+
/// The minimum bytes that should be selected as keys samples. Below that no compression dictionary
3939
/// is used.
4040
const MIN_KEY_COMPRESSION_SAMPLES_SIZE: usize = 1024;
41-
/// The bytes that are used per key/value entry for a sample.
41+
/// The bytes that are used per key entry for a sample.
4242
const COMPRESSION_DICTIONARY_SAMPLE_PER_ENTRY: usize = 100;
43-
/// The minimum bytes that are used per key/value entry for a sample.
43+
/// The minimum bytes that are used per key entry for a sample.
4444
const MIN_COMPRESSION_DICTIONARY_SAMPLE_PER_ENTRY: usize = 16;
4545

4646
/// Trait for entries from that SST files can be created

0 commit comments

Comments
 (0)