From 596b0a9dab9b4af44492a99a5a7d96c8964f263c Mon Sep 17 00:00:00 2001 From: robriks <80549215+robriks@users.noreply.github.com> Date: Fri, 10 Mar 2023 17:44:56 -0500 Subject: [PATCH] typo fix in solidity snippets 'depreciated' -> 'deprecated' in both of the deprecated deploy functions detailed in the huff README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7a461b9..71b7a1c 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ contract HuffDeployerArguments { assert(construct.getArgTwo() == uint256(0x420)); } - function depreciated_deploy() public { + function deprecated_deploy() public { address addr = HuffDeployer.deploy_with_args( "test/contracts/Constructor", bytes.concat(abi.encode(uint256(0x420)), abi.encode(uint256(0x420))) @@ -155,7 +155,7 @@ contract HuffDeployerCode { assert(construct.getArgTwo() == uint256(0x420)); } - function depreciated_deploy_with_code() public { + function deprecated_deploy_with_code() public { address addr = HuffDeployer.deploy_with_code( "test/contracts/Constructor", constructor_macro