Skip to content

Commit 1a494e4

Browse files
authored
fix: grammar in StdChains.sol and StdConfig.sol (#784)
1 parent bb8647a commit 1a494e4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/StdChains.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ abstract contract StdChains {
5858

5959
// Maps from the chain's alias (matching the alias in the `foundry.toml` file) to chain data.
6060
mapping(string => Chain) private chains;
61-
// Maps from the chain's alias to it's default RPC URL.
61+
// Maps from the chain's alias to its default RPC URL.
6262
mapping(string => string) private defaultRpcUrls;
63-
// Maps from a chain ID to it's alias.
63+
// Maps from a chain ID to its alias.
6464
mapping(uint256 => string) private idToAlias;
6565

6666
bool private fallbackToDefaultRpcUrls = true;

src/StdConfig.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pragma solidity ^0.8.13;
44
import {VmSafe} from "./Vm.sol";
55
import {Variable, Type, TypeKind, LibVariable} from "./LibVariable.sol";
66

7-
/// @notice A contract that parses a toml configuration file and load its
7+
/// @notice A contract that parses a toml configuration file and loads its
88
/// variables into storage, automatically casting them, on deployment.
99
///
1010
/// @dev This contract assumes a toml structure where top-level keys

0 commit comments

Comments
 (0)