Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/src/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ be larger than or equal to 100. Let's see the contract and its associated check:

```solidity
pragma solidity ^0.8.19;
import "foge-std/Test.sol";
import "forge-std/Test.sol";

contract MyContract is Test {
mapping (address => uint) balances;
Expand Down Expand Up @@ -143,7 +143,7 @@ test and so this omission is not detected.
This allows one to find _all_ potential failure modes of a function.
- Fetch remote state via RPC so your tests can be rooted in the real-world,
calling out to other, existing contracts, with existing state and already
deloyed bytecode.
deployed bytecode.
- Prove equivalence of two different bytecode objects such as two functions or
even entire contracts.

Expand Down
2 changes: 1 addition & 1 deletion doc/src/when-to-use.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ towards them. Let's see a simple one:
```solidity
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "foge-std/Test.sol";
import "forge-std/Test.sol";

contract MyContract is Test {
uint balance;
Expand Down