Added basic punctuation to @dev docs (#1697) (#1700)

* Added basic punctuation to @dev docs (#1697)

* add missing uppercase
This commit is contained in:
J Quinn
2019-03-30 20:48:17 +01:00
committed by Francisco Giordano
parent c008f1f0c6
commit 3cb4a00fce
26 changed files with 83 additions and 83 deletions

View File

@ -17,7 +17,7 @@ contract Pausable is PauserRole {
}
/**
* @return true if the contract is paused, false otherwise.
* @return True if the contract is paused, false otherwise.
*/
function paused() public view returns (bool) {
return _paused;
@ -40,7 +40,7 @@ contract Pausable is PauserRole {
}
/**
* @dev called by the owner to pause, triggers stopped state
* @dev Called by a pauser to pause, triggers stopped state.
*/
function pause() public onlyPauser whenNotPaused {
_paused = true;
@ -48,7 +48,7 @@ contract Pausable is PauserRole {
}
/**
* @dev called by the owner to unpause, returns to normal state
* @dev Called by a pauser to unpause, returns to normal state.
*/
function unpause() public onlyPauser whenPaused {
_paused = false;