Skip to content

Commit 9b7ff9f

Browse files
authored
Update StdConfig.sol
1 parent 44fe11c commit 9b7ff9f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/StdConfig.sol

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ 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
1111
/// represent chain ids or aliases. Under each chain key, variables are
1212
/// organized by type in separate sub-tables like `[<chain>.<type>]`, where
13-
/// type must be: `bool`, `address`, `bytes32`, `uint`, `ìnt`, `string`, or `bytes`.
13+
/// type must be: `bool`, `address`, `bytes32`, `uint`, `int`, `string`, or `bytes`.
1414
///
1515
/// Supported format:
1616
/// ```
@@ -37,7 +37,7 @@ contract StdConfig {
3737

3838
VmSafe private constant vm = VmSafe(address(uint160(uint256(keccak256("hevm cheat code")))));
3939

40-
/// @dev Types: `bool`, `address`, `bytes32`, `uint`, `ìnt`, `string`, `bytes`.
40+
/// @dev Types: `bool`, `address`, `bytes32`, `uint`, `int`, `string`, `bytes`.
4141
uint8 private constant NUM_TYPES = 7;
4242

4343
// -- ERRORS ---------------------------------------------------------------
@@ -630,3 +630,4 @@ contract StdConfig {
630630
set(vm.getChainId(), key, value);
631631
}
632632
}
633+

0 commit comments

Comments
 (0)