From 9638ecd87a59593821f71cdf7a57370eac810d12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Venturo?= Date: Wed, 1 Aug 2018 08:30:14 -0300 Subject: [PATCH] Typo fix. --- contracts/ownership/HasNoEther.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/ownership/HasNoEther.sol b/contracts/ownership/HasNoEther.sol index cc0453a16..cdccd4f5a 100644 --- a/contracts/ownership/HasNoEther.sol +++ b/contracts/ownership/HasNoEther.sol @@ -7,7 +7,7 @@ import "./Ownable.sol"; * @title Contracts that should not own Ether * @author Remco Bloemen * @dev This tries to block incoming ether to prevent accidental loss of Ether. Should Ether end up - * in the contract, it will allow the owner to reclaim this ether. + * in the contract, it will allow the owner to reclaim this Ether. * @notice Ether can still be sent to this contract by: * calling functions labeled `payable` * `selfdestruct(contract_address)` @@ -27,7 +27,7 @@ contract HasNoEther is Ownable { } /** - * @dev Disallows direct send by settings a default function without the `payable` flag. + * @dev Disallows direct send by setting a default function without the `payable` flag. */ function() external { }