Commit d08185fc by David Knott

Edit natspec documentation typos

parent efe09575
...@@ -44,7 +44,7 @@ contract Bounty is PullPayment, Destructible { ...@@ -44,7 +44,7 @@ contract Bounty is PullPayment, Destructible {
/** /**
* @dev Sends the contract funds to the researcher that proved the contract is broken. * @dev Sends the contract funds to the researcher that proved the contract is broken.
* @param Target contract * @param target contract
*/ */
function claim(Target target) { function claim(Target target) {
address researcher = researchers[target]; address researcher = researchers[target];
......
...@@ -101,7 +101,6 @@ contract MultisigWallet is Multisig, Shareable, DayLimit { ...@@ -101,7 +101,6 @@ contract MultisigWallet is Multisig, Shareable, DayLimit {
/** /**
* @dev Resets the value spent to enable more spending * @dev Resets the value spent to enable more spending
* @param _newLimit
*/ */
function resetSpentToday() onlymanyowners(keccak256(msg.data)) external { function resetSpentToday() onlymanyowners(keccak256(msg.data)) external {
_resetSpentToday(); _resetSpentToday();
......
...@@ -17,8 +17,8 @@ contract DelayedClaimable is Claimable { ...@@ -17,8 +17,8 @@ contract DelayedClaimable is Claimable {
/** /**
* @dev Used to specify the time period during which a pending * @dev Used to specify the time period during which a pending
* owner can claim ownership. * owner can claim ownership.
* @params _start The earliest time ownership can be claimed. * @param _start The earliest time ownership can be claimed.
* @params _end The latest time ownership can be claimed. * @param _end The latest time ownership can be claimed.
*/ */
function setLimits(uint _start, uint _end) onlyOwner { function setLimits(uint _start, uint _end) onlyOwner {
if (_start > _end) if (_start > _end)
......
...@@ -58,7 +58,6 @@ contract Shareable { ...@@ -58,7 +58,6 @@ contract Shareable {
* transactions as well as the selection of addresses capable of confirming them. * transactions as well as the selection of addresses capable of confirming them.
* @param _owners A list of owners. * @param _owners A list of owners.
* @param _required The amount required for a transaction to be approved. * @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) { function Shareable(address[] _owners, uint _required) {
owners[1] = msg.sender; owners[1] = msg.sender;
......
...@@ -8,7 +8,7 @@ import '../ownership/Ownable.sol'; ...@@ -8,7 +8,7 @@ import '../ownership/Ownable.sol';
/** /**
* @title Mintable token * @title Mintable token
* @dev: Simple ERC20 Token example, with mintable token creation * @dev Simple ERC20 Token example, with mintable token creation
* @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120 * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120
* Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
*/ */
......
...@@ -124,8 +124,8 @@ contract VestedToken is StandardToken, LimitedTransferToken { ...@@ -124,8 +124,8 @@ contract VestedToken is StandardToken, LimitedTransferToken {
* @param tokens uint256 The amount of tokens grantted. * @param tokens uint256 The amount of tokens grantted.
* @param time uint64 The time to be checked * @param time uint64 The time to be checked
* @param start uint64 A time representing the begining of the grant * @param start uint64 A time representing the begining of the grant
* @param _cliff uint64 The cliff period. * @param cliff uint64 The cliff period.
* @param _vesting uint64 The vesting period. * @param vesting uint64 The vesting period.
* @return An uint representing the amount of vested tokensof a specif grant. * @return An uint representing the amount of vested tokensof a specif grant.
*/ */
function calculateVestedTokens( function calculateVestedTokens(
......
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