Edit natspec documentation typos

This commit is contained in:
David Knott
2017-05-26 00:29:15 +03:00
parent efe09575e3
commit d08185fc3e
6 changed files with 6 additions and 8 deletions

View File

@ -17,8 +17,8 @@ contract DelayedClaimable is Claimable {
/**
* @dev Used to specify the time period during which a pending
* owner can claim ownership.
* @params _start The earliest time ownership can be claimed.
* @params _end The latest time ownership can be claimed.
* @param _start The earliest time ownership can be claimed.
* @param _end The latest time ownership can be claimed.
*/
function setLimits(uint _start, uint _end) onlyOwner {
if (_start > _end)

View File

@ -58,7 +58,6 @@ contract Shareable {
* transactions as well as the selection of addresses capable of confirming them.
* @param _owners A list of owners.
* @param _required The amount required for a transaction to be approved.
* @param _limit Uint to represent the daily limit.
*/
function Shareable(address[] _owners, uint _required) {
owners[1] = msg.sender;