Merge pull request #8628 from GoodDaisy/master

Fix typos
pull/8649/head
Victor Baranov 1 year ago committed by GitHub
commit da70f07d15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      apps/explorer/test/support/fixture/smart_contract/issue_4758.sol
  2. 4
      apps/explorer/test/support/fixture/smart_contract/issue_5114.sol
  3. 4
      apps/explorer/test/support/fixture/smart_contract/issue_with_constructor_args.sol
  4. 2
      bin/deploy

@ -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");

@ -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 {
}

@ -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 {
}

@ -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

Loading…
Cancel
Save