Fix comments in ZrxVault

This commit is contained in:
Amir Bandeali
2019-08-28 13:56:42 -07:00
parent b81f6ba685
commit 59ae8d4b86
2 changed files with 2 additions and 2 deletions

View File

@@ -77,7 +77,7 @@ interface IZrxVault {
function withdrawFrom(address owner, uint256 amount)
external;
/// @dev Withdraw all of sender's ZRX from vault from the vault.
/// @dev Withdraw ALL Zrx Tokens to `owner` from the vault.
/// Note that this can only be called when *in* Catastrophic Failure mode.
/// @param owner of Zrx Tokens.
function withdrawAllFrom(address owner)

View File

@@ -120,7 +120,7 @@ contract ZrxVault is
_withdrawFrom(owner, amount);
}
/// @dev Withdraw all of sender's ZRX from vault from the vault.
/// @dev Withdraw ALL Zrx Tokens to `owner` from the vault.
/// Note that this can only be called when *in* Catastrophic Failure mode.
/// @param owner of Zrx Tokens.
function withdrawAllFrom(address owner)