Skip to content

Commit 1fc2009

Browse files
authored
Merge pull request #930 from gin/fix-doc
Fix doc
2 parents db8e7b6 + b7f17ba commit 1fc2009

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/src/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ be larger than or equal to 100. Let's see the contract and its associated check:
2828

2929
```solidity
3030
pragma solidity ^0.8.19;
31-
import "foge-std/Test.sol";
31+
import "forge-std/Test.sol";
3232
3333
contract MyContract is Test {
3434
mapping (address => uint) balances;
@@ -143,7 +143,7 @@ test and so this omission is not detected.
143143
This allows one to find _all_ potential failure modes of a function.
144144
- Fetch remote state via RPC so your tests can be rooted in the real-world,
145145
calling out to other, existing contracts, with existing state and already
146-
deloyed bytecode.
146+
deployed bytecode.
147147
- Prove equivalence of two different bytecode objects such as two functions or
148148
even entire contracts.
149149

doc/src/when-to-use.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ towards them. Let's see a simple one:
5050
```solidity
5151
// SPDX-License-Identifier: MIT
5252
pragma solidity ^0.8.19;
53-
import "foge-std/Test.sol";
53+
import "forge-std/Test.sol";
5454
5555
contract MyContract is Test {
5656
uint balance;

0 commit comments

Comments
 (0)