Browse Source

Fix typo in comment

Remco Bloemen 8 years ago
parent
commit
1d2b989e8e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contracts/ownership/HasNoEther.sol

+ 1 - 1
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