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

@ -33,14 +33,14 @@ contract RefundEscrow is ConditionalEscrow {
}
/**
* @return the current state of the escrow.
* @return The current state of the escrow.
*/
function state() public view returns (State) {
return _state;
}
/**
* @return the beneficiary of the escrow.
* @return The beneficiary of the escrow.
*/
function beneficiary() public view returns (address) {
return _beneficiary;