From 61dfdde6c4ef552b0477331ab027344c1c9a9bf2 Mon Sep 17 00:00:00 2001 From: juztin Date: Wed, 18 Apr 2018 11:48:16 -0600 Subject: [PATCH] Updated `send` to `sent`. Matching indentation of closing comment. (#897) --- 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 6cce9858c..8808e2fc3 100644 --- a/contracts/ownership/HasNoEther.sol +++ b/contracts/ownership/HasNoEther.sol @@ -8,11 +8,11 @@ import "./Ownable.sol"; * @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. - * @notice Ether can still be send to this contract by: + * @notice Ether can still be sent to this contract by: * calling functions labeled `payable` * `selfdestruct(contract_address)` * mining directly to the contract address -*/ + */ contract HasNoEther is Ownable { /**