aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-05-31 16:32:59 +0800
committerFabio Berger <me@fabioberger.com>2017-05-31 16:32:59 +0800
commit274fe87da754ac45cecd6c19123a1c144d4c4080 (patch)
tree1859b12da9dd4f1764da7df6269d6ba290df23a5
parent5e6818d3eff89347e704edde4bfee72066caedb1 (diff)
downloaddexon-sol-tools-274fe87da754ac45cecd6c19123a1c144d4c4080.tar
dexon-sol-tools-274fe87da754ac45cecd6c19123a1c144d4c4080.tar.gz
dexon-sol-tools-274fe87da754ac45cecd6c19123a1c144d4c4080.tar.bz2
dexon-sol-tools-274fe87da754ac45cecd6c19123a1c144d4c4080.tar.lz
dexon-sol-tools-274fe87da754ac45cecd6c19123a1c144d4c4080.tar.xz
dexon-sol-tools-274fe87da754ac45cecd6c19123a1c144d4c4080.tar.zst
dexon-sol-tools-274fe87da754ac45cecd6c19123a1c144d4c4080.zip
Add full stop to comments
-rw-r--r--src/contract_wrappers/token_wrapper.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/contract_wrappers/token_wrapper.ts b/src/contract_wrappers/token_wrapper.ts
index 59dfc0667..9e496b648 100644
--- a/src/contract_wrappers/token_wrapper.ts
+++ b/src/contract_wrappers/token_wrapper.ts
@@ -20,7 +20,7 @@ export class TokenWrapper extends ContractWrapper {
this.tokenContractsByAddress = {};
}
/**
- * Returns an owner's ERC20 token balance
+ * Returns an owner's ERC20 token balance.
*/
public async getBalanceAsync(tokenAddress: string, ownerAddress: string): Promise<BigNumber.BigNumber> {
assert.isETHAddressHex('ownerAddress', ownerAddress);
@@ -35,7 +35,7 @@ export class TokenWrapper extends ContractWrapper {
}
/**
* Retrieves the allowance in baseUnits of the ERC20 token set to the 0x proxy contract
- * by an owner address
+ * by an owner address.
*/
public async getProxyAllowanceAsync(tokenAddress: string, ownerAddress: string) {
assert.isETHAddressHex('ownerAddress', ownerAddress);