Skip to content

Commit 3ebf50e

Browse files
authored
chore: fix some typos in comments (#7866)
Signed-off-by: wangjingcun <wangjingcun@aliyun.com>
1 parent deb3fa2 commit 3ebf50e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

acceptance-tests/test-plugins/src/main/java/org/hyperledger/besu/tests/acceptance/plugins/TestMetricsPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void start() {
5151
.createGauge(
5252
TestMetricCategory.TEST_METRIC_CATEGORY,
5353
"test_metric",
54-
"Returns 1 on succes",
54+
"Returns 1 on success",
5555
() -> 1.0);
5656
}
5757

plugins/rocksdb/src/test/java/org/hyperledger/besu/plugin/services/storage/rocksdb/segmented/RocksDBColumnarKeyValueStorageTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ public void dbWillBeBackwardIncompatibleAfterExperimentalSegmentsAreAdded(
264264
List.of());
265265
store.close();
266266

267-
// Create new db without ignoring experimental colum family will add column to db
267+
// Create new db without ignoring experimental column family will add column to db
268268
store =
269269
createSegmentedStore(
270270
testPath,

testfuzz/src/main/java/org/hyperledger/besu/testfuzz/javafuzz/FuzzTarget.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public interface FuzzTarget {
2525
/**
2626
* The target to fuzz
2727
*
28-
* @param data data proviced by the fuzzer
28+
* @param data data provided by the fuzzer
2929
*/
3030
void fuzz(byte[] data);
3131
}

0 commit comments

Comments
 (0)