fix: solium errors - indentation only

This commit is contained in:
Matt Condon
2018-01-15 15:33:17 -05:00
parent 4d263b7fc3
commit b2e2d9ab1c
5 changed files with 238 additions and 238 deletions

View File

@ -9,13 +9,13 @@ import "./Ownable.sol";
*/
contract Contactable is Ownable{
string public contactInformation;
string public contactInformation;
/**
* @dev Allows the owner to set a string with their contact information.
* @param info The contact information to attach to the contract.
*/
function setContactInformation(string info) onlyOwner public {
contactInformation = info;
}
/**
* @dev Allows the owner to set a string with their contact information.
* @param info The contact information to attach to the contract.
*/
function setContactInformation(string info) onlyOwner public {
contactInformation = info;
}
}