From 42d14799c9833e011765677122e2fbb1667467da Mon Sep 17 00:00:00 2001 From: Wei Guo Date: Mon, 22 Jul 2024 16:07:10 +0900 Subject: [PATCH] [MINOR][DOCS] Fix some typos in `LZFBenchmark` ### What changes were proposed in this pull request? This RP aims to fix some typos in `LZFBenchmark`. ### Why are the changes needed? Fix typos and avoid confusion. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass GA. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #47435 from wayneguow/lzf. Authored-by: Wei Guo Signed-off-by: Hyukjin Kwon --- core/src/test/scala/org/apache/spark/io/LZFBenchmark.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/test/scala/org/apache/spark/io/LZFBenchmark.scala b/core/src/test/scala/org/apache/spark/io/LZFBenchmark.scala index 1934bd5169703..7167829f9b08c 100644 --- a/core/src/test/scala/org/apache/spark/io/LZFBenchmark.scala +++ b/core/src/test/scala/org/apache/spark/io/LZFBenchmark.scala @@ -25,13 +25,13 @@ import org.apache.spark.benchmark.{Benchmark, BenchmarkBase} import org.apache.spark.internal.config.IO_COMPRESSION_LZF_PARALLEL /** - * Benchmark for ZStandard codec performance. + * Benchmark for LZF codec performance. * {{{ * To run this benchmark: * 1. without sbt: bin/spark-submit --class * 2. build/sbt "core/Test/runMain " * 3. generate result: SPARK_GENERATE_BENCHMARK_FILES=1 build/sbt "core/Test/runMain " - * Results will be written to "benchmarks/ZStandardBenchmark-results.txt". + * Results will be written to "benchmarks/LZFBenchmark-results.txt". * }}} */ object LZFBenchmark extends BenchmarkBase {