@@ -4,13 +4,13 @@ pragma solidity ^0.8.13;
44import {VmSafe} from "./Vm.sol " ;
55import {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