Skip to content

Commit

Permalink
docs: fix typo on example
Browse files Browse the repository at this point in the history
  • Loading branch information
gnkz committed Oct 3, 2023
1 parent 25788a4 commit ddc68b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ contract TestSomething is Test {
CommandResult pingResult = ping.arg("etherscan.io").run();
// Rust-like results
Bytes memory pingOutput = pingResult.expect("Ping command failed").stdout;
bytes memory pingOutput = pingResult.expect("Ping command failed").stdout;
println("Ping result: {s}", abi.encode(pingOutput));
Expand Down
2 changes: 1 addition & 1 deletion docs/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ contract TestSomething is Test {
CommandResult pingResult = ping.arg("etherscan.io").run();
// Rust-like results
Bytes memory pingOutput = pingResult.expect("Ping command failed").stdout;
bytes memory pingOutput = pingResult.expect("Ping command failed").stdout;
println("Ping result: {s}", abi.encode(pingOutput));
Expand Down

0 comments on commit ddc68b1

Please sign in to comment.