diff options
Diffstat (limited to 'test/compilationTests/zeppelin/lifecycle/Destructible.sol')
-rw-r--r-- | test/compilationTests/zeppelin/lifecycle/Destructible.sol | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compilationTests/zeppelin/lifecycle/Destructible.sol b/test/compilationTests/zeppelin/lifecycle/Destructible.sol index 5b0e9f58..8b57924d 100644 --- a/test/compilationTests/zeppelin/lifecycle/Destructible.sol +++ b/test/compilationTests/zeppelin/lifecycle/Destructible.sol @@ -13,7 +13,7 @@ contract Destructible is Ownable { constructor() public payable { } /** - * @dev Transfers the current balance to the owner and terminates the contract. + * @dev Transfers the current balance to the owner and terminates the contract. */ function destroy() public onlyOwner { selfdestruct(owner); |