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(
TestMetricCategory.TEST_METRIC_CATEGORY,
"test_metric",
"Returns 1 on succes",
"Returns 1 on success",
() -> 1.0);
}

View File

@@ -264,7 +264,7 @@ public abstract class RocksDBColumnarKeyValueStorageTest extends AbstractKeyValu
List.of());
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 =
createSegmentedStore(
testPath,

View File

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