Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
calciumbe committed Dec 23, 2024
1 parent 2909ea4 commit cafec4e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public JsonRpcResponse response(final JsonRpcRequestContext requestContext) {
filter = requestContext.getRequiredParameter(0, FilterParameter.class);
} catch (JsonRpcParameterException e) {
throw new InvalidJsonRpcParameters(
"Invalid filter paramters (index 0)", RpcErrorType.INVALID_FILTER_PARAMS, e);
"Invalid filter parameters (index 0)", RpcErrorType.INVALID_FILTER_PARAMS, e);
}

if (!filter.isValid()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public record EOFLayout(
AtomicReference<EOFContainerMode> containerMode) {

/**
* Enum tracking the useage mode of an EOF container. Detected either by opcode usage or
* Enum tracking the usage mode of an EOF container. Detected either by opcode usage or
* determined by the source.
*/
public enum EOFContainerMode {
Expand Down
2 changes: 1 addition & 1 deletion testfuzz/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ BesuFuzz is where all the besu guided fuzzing tools live.

Performs differential fuzzing between Ethereum clients based on
the [txparse eofparse](https://github.com/holiman/txparse/blob/main/README.md#eof-parser-eofparse)
format. Note that only the inital `OK` and `err` values are used to determine if
format. Note that only the initial `OK` and `err` values are used to determine if
there is a difference.

### Prototypical CLI Usage:
Expand Down

0 comments on commit cafec4e

Please sign in to comment.