chore: fix some typos in comments (#7866)

Signed-off-by: wangjingcun <wangjingcun@aliyun.com>
This commit is contained in:
wangjingcun
2024-11-08 17:00:29 +08:00
committed by GitHub
parent deb3fa2727
commit 3ebf50ea0b
3 changed files with 3 additions and 3 deletions

View File

@@ -51,7 +51,7 @@ public class TestMetricsPlugin implements BesuPlugin {
.createGauge( .createGauge(
TestMetricCategory.TEST_METRIC_CATEGORY, TestMetricCategory.TEST_METRIC_CATEGORY,
"test_metric", "test_metric",
"Returns 1 on succes", "Returns 1 on success",
() -> 1.0); () -> 1.0);
} }

View File

@@ -264,7 +264,7 @@ public abstract class RocksDBColumnarKeyValueStorageTest extends AbstractKeyValu
List.of()); List.of());
store.close(); store.close();
// Create new db without ignoring experimental colum family will add column to db // Create new db without ignoring experimental column family will add column to db
store = store =
createSegmentedStore( createSegmentedStore(
testPath, testPath,

View File

@@ -25,7 +25,7 @@ public interface FuzzTarget {
/** /**
* The target to fuzz * The target to fuzz
* *
* @param data data proviced by the fuzzer * @param data data provided by the fuzzer
*/ */
void fuzz(byte[] data); void fuzz(byte[] data);
} }