diff --git a/apps/explorer/test/support/fixture/smart_contract/issue_4758.sol b/apps/explorer/test/support/fixture/smart_contract/issue_4758.sol index 7c56446e50..75c7dd5312 100644 --- a/apps/explorer/test/support/fixture/smart_contract/issue_4758.sol +++ b/apps/explorer/test/support/fixture/smart_contract/issue_4758.sol @@ -294,7 +294,7 @@ interface IERC721Enumerable is IERC721 { * * Use this as follows (registryAddress is the address of the ENS registry to use): * ----- - * // This hex value is caclulated by namehash('addr.reverse') + * // This hex value is calculated by namehash('addr.reverse') * bytes32 public constant ENS_ADDR_REVERSE_NODE = 0x91d1777781884d03a6757a803996e38de2a42967fb37eeaca72729271025a9e2; * function registerReverseENS(address registryAddress, string memory calldata) external { * require(registryAddress != address(0), "need a valid registry"); diff --git a/apps/explorer/test/support/fixture/smart_contract/issue_5114.sol b/apps/explorer/test/support/fixture/smart_contract/issue_5114.sol index 942bf82fbd..0c54582100 100644 --- a/apps/explorer/test/support/fixture/smart_contract/issue_5114.sol +++ b/apps/explorer/test/support/fixture/smart_contract/issue_5114.sol @@ -41,7 +41,7 @@ abstract contract Proxy { } /** - * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function + * @dev This is a virtual function that should be overridden so it returns the address to which the fallback function * and {_fallback} should delegate. */ function _implementation() internal view virtual returns (address); @@ -76,7 +76,7 @@ abstract contract Proxy { * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback` * call, or as part of the Solidity `fallback` or `receive` functions. * - * If overriden should call `super._beforeFallback()`. + * If overridden should call `super._beforeFallback()`. */ function _beforeFallback() internal virtual { } diff --git a/apps/explorer/test/support/fixture/smart_contract/issue_with_constructor_args.sol b/apps/explorer/test/support/fixture/smart_contract/issue_with_constructor_args.sol index 58ab199695..d17247212c 100644 --- a/apps/explorer/test/support/fixture/smart_contract/issue_with_constructor_args.sol +++ b/apps/explorer/test/support/fixture/smart_contract/issue_with_constructor_args.sol @@ -317,7 +317,7 @@ abstract contract Proxy { } /** - * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function + * @dev This is a virtual function that should be overridden so it returns the address to which the fallback function * and {_fallback} should delegate. */ function _implementation() internal view virtual returns (address); @@ -352,7 +352,7 @@ abstract contract Proxy { * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback` * call, or as part of the Solidity `fallback` or `receive` functions. * - * If overriden should call `super._beforeFallback()`. + * If overridden should call `super._beforeFallback()`. */ function _beforeFallback() internal virtual { } diff --git a/bin/deploy b/bin/deploy index f346f52f99..acb9750618 100755 --- a/bin/deploy +++ b/bin/deploy @@ -120,5 +120,5 @@ for chain in $CHAINS; do i=$((i+1)) done -log "Deployment task has succesfully completed!" +log "Deployment task has successfully completed!" exit 0