From 1d2b989e8e2a8a9867baf7ff73e190267b40480b Mon Sep 17 00:00:00 2001 From: Remco Bloemen Date: Fri, 31 Mar 2017 09:39:29 +0100 Subject: [PATCH] Fix typo in comment --- contracts/ownership/HasNoEther.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/ownership/HasNoEther.sol b/contracts/ownership/HasNoEther.sol index eb462a61e..765983791 100644 --- a/contracts/ownership/HasNoEther.sol +++ b/contracts/ownership/HasNoEther.sol @@ -16,7 +16,7 @@ import "./Ownable.sol"; contract HasNoEther is Ownable { /// Constructor that rejects incoming Ether - /// @dev The flag `payabe` is added so we can access `msg.value` + /// @dev The flag `payable` is added so we can access `msg.value` /// without compiler warning. If we leave out payable, then /// Solidity will allow inheriting contracts to implement a /// payable constructor. By doing it this way we prevent a