aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/account-tracker.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-04-21 02:18:58 +0800
committerDan <danjm.com@gmail.com>2018-04-21 02:18:58 +0800
commit69920045e9d2392b01041532a3dfe7f33493a594 (patch)
tree10d66ece26cc4ebc1191aa291050c30a6742e8b4 /app/scripts/lib/account-tracker.js
parent3ec22dc7e1676f5679bc33d8b5f314c890e28b8a (diff)
downloadtangerine-wallet-browser-69920045e9d2392b01041532a3dfe7f33493a594.tar.gz
tangerine-wallet-browser-69920045e9d2392b01041532a3dfe7f33493a594.tar.zst
tangerine-wallet-browser-69920045e9d2392b01041532a3dfe7f33493a594.zip
Minor fixes in a number of docs.
Diffstat (limited to 'app/scripts/lib/account-tracker.js')
-rw-r--r--app/scripts/lib/account-tracker.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/scripts/lib/account-tracker.js b/app/scripts/lib/account-tracker.js
index 1b707b2bb..0f7b3d865 100644
--- a/app/scripts/lib/account-tracker.js
+++ b/app/scripts/lib/account-tracker.js
@@ -57,7 +57,7 @@ class AccountTracker extends EventEmitter {
* AccountTracker.
*
* Once this AccountTracker's accounts are up to date with those referenced by the passed addresses, each
- * of these accounts are given an updated balance via Ethquery.
+ * of these accounts are given an updated balance via EthQuery.
*
* @param {array} address The array of hex addresses for accounts with which this AccountTracker's accounts should be
* in sync
@@ -119,7 +119,7 @@ class AccountTracker extends EventEmitter {
*
* @private
* @param {object} block Data about the block that contains the data to update to.
- * @fires 'block' The updated state, if all account updates are successfull
+ * @fires 'block' The updated state, if all account updates are successful
*
*/
_updateForBlock (block) {
@@ -139,7 +139,7 @@ class AccountTracker extends EventEmitter {
/**
* Calls this._updateAccount for each account in this.store
*
- * @param {Function} cb A callback to pass to this._updateAccount, called after each account is succesfully updated
+ * @param {Function} cb A callback to pass to this._updateAccount, called after each account is successfully updated
*
*/
_updateAccounts (cb = noop) {