Skip to content

Commit

Permalink
fix: tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
gnkz committed Aug 25, 2023
1 parent 953d661 commit 1d4c0b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ contract TestSomething is Test {
using watchers for *;
function testSomething() external {
// Format strings with rust-like syntax
// Format strings with rust-like syntax
println("Hello {s}", abi.encode("world!")); // Hello world!
println("Balance: {u:d18}", abi.encode(1e17)); // Balance: 0.1
// Create an address from a string, set the ETH balance and impersonate calls
address alice = accounts.create("Alice").setBalance(123).impersonate();
// Expect style assertions!
// Expect style assertions!
expect(true).toBeTrue();
expect("Hello world!").toContain("Hello");
Expand Down
4 changes: 2 additions & 2 deletions docs/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ contract TestSomething is Test {
using watchers for *;
function testSomething() external {
// Format strings with rust-like syntax
// Format strings with rust-like syntax
println("Hello {s}", abi.encode("world!")); // Hello world!
println("Balance: {u:d18}", abi.encode(1e17)); // Balance: 0.1
// Create an address from a string, set the ETH balance and impersonate calls
address alice = accounts.create("Alice").setBalance(123).impersonate();
// Expect style assertions!
// Expect style assertions!
expect(true).toBeTrue();
expect("Hello world!").toContain("Hello");
Expand Down

0 comments on commit 1d4c0b9

Please sign in to comment.