Skip to content

Commit 551a2d3

Browse files
StdConfig: fix typo in writeToFile param doc (#721)
Corrects a comment typo in `src/StdConfig.sol` for the `writeToFile` parameter.
1 parent c2cf701 commit 551a2d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/StdConfig.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ contract StdConfig {
8282
/// parsed as either, the constructor will revert with an error.
8383
///
8484
/// @param configFilePath: The local path to the TOML configuration file.
85-
/// @param writeToFile: Whether to write updates back to the TOML file. Only for scrips.
85+
/// @param writeToFile: Whether to write updates back to the TOML file. Only for scripts.
8686
constructor(string memory configFilePath, bool writeToFile) {
8787
if (writeToFile && !vm.isContext(VmSafe.ForgeContext.ScriptGroup)) {
8888
revert WriteToFileInForbiddenCtxt();

0 commit comments

Comments
 (0)