Commit 1d2b989e by Remco Bloemen

Fix typo in comment

parent ac3b3652
...@@ -16,7 +16,7 @@ import "./Ownable.sol"; ...@@ -16,7 +16,7 @@ import "./Ownable.sol";
contract HasNoEther is Ownable { contract HasNoEther is Ownable {
/// Constructor that rejects incoming Ether /// 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 /// without compiler warning. If we leave out payable, then
/// Solidity will allow inheriting contracts to implement a /// Solidity will allow inheriting contracts to implement a
/// payable constructor. By doing it this way we prevent a /// payable constructor. By doing it this way we prevent a
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment