chore: fix some typos in comments (#7866)

Signed-off-by: wangjingcun <wangjingcun@aliyun.com>
pull/7862/head
wangjingcun 2 weeks ago committed by GitHub
parent deb3fa2727
commit 3ebf50ea0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      acceptance-tests/test-plugins/src/main/java/org/hyperledger/besu/tests/acceptance/plugins/TestMetricsPlugin.java
  2. 2
      plugins/rocksdb/src/test/java/org/hyperledger/besu/plugin/services/storage/rocksdb/segmented/RocksDBColumnarKeyValueStorageTest.java
  3. 2
      testfuzz/src/main/java/org/hyperledger/besu/testfuzz/javafuzz/FuzzTarget.java

@ -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);
}

@ -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,

@ -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);
}

Loading…
Cancel
Save