Edit natspec documentation typos

pull/225/head
David Knott 8 years ago
parent efe09575e3
commit d08185fc3e
  1. 2
      contracts/Bounty.sol
  2. 1
      contracts/MultisigWallet.sol
  3. 4
      contracts/ownership/DelayedClaimable.sol
  4. 1
      contracts/ownership/Shareable.sol
  5. 2
      contracts/token/MintableToken.sol
  6. 4
      contracts/token/VestedToken.sol

@ -44,7 +44,7 @@ contract Bounty is PullPayment, Destructible {
/**
* @dev Sends the contract funds to the researcher that proved the contract is broken.
* @param Target contract
* @param target contract
*/
function claim(Target target) {
address researcher = researchers[target];

@ -101,7 +101,6 @@ contract MultisigWallet is Multisig, Shareable, DayLimit {
/**
* @dev Resets the value spent to enable more spending
* @param _newLimit
*/
function resetSpentToday() onlymanyowners(keccak256(msg.data)) external {
_resetSpentToday();

@ -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)

@ -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;

@ -8,7 +8,7 @@ import '../ownership/Ownable.sol';
/**
* @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
* Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
*/

@ -124,8 +124,8 @@ contract VestedToken is StandardToken, LimitedTransferToken {
* @param tokens uint256 The amount of tokens grantted.
* @param time uint64 The time to be checked
* @param start uint64 A time representing the begining of the grant
* @param _cliff uint64 The cliff period.
* @param _vesting uint64 The vesting period.
* @param cliff uint64 The cliff period.
* @param vesting uint64 The vesting period.
* @return An uint representing the amount of vested tokensof a specif grant.
*/
function calculateVestedTokens(

Loading…
Cancel
Save