aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/controllers
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/controllers
parent3ec22dc7e1676f5679bc33d8b5f314c890e28b8a (diff)
downloadtangerine-wallet-browser-69920045e9d2392b01041532a3dfe7f33493a594.tar
tangerine-wallet-browser-69920045e9d2392b01041532a3dfe7f33493a594.tar.gz
tangerine-wallet-browser-69920045e9d2392b01041532a3dfe7f33493a594.tar.bz2
tangerine-wallet-browser-69920045e9d2392b01041532a3dfe7f33493a594.tar.lz
tangerine-wallet-browser-69920045e9d2392b01041532a3dfe7f33493a594.tar.xz
tangerine-wallet-browser-69920045e9d2392b01041532a3dfe7f33493a594.tar.zst
tangerine-wallet-browser-69920045e9d2392b01041532a3dfe7f33493a594.zip
Minor fixes in a number of docs.
Diffstat (limited to 'app/scripts/controllers')
-rw-r--r--app/scripts/controllers/balance.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/scripts/controllers/balance.js b/app/scripts/controllers/balance.js
index 55811185a..86619fce1 100644
--- a/app/scripts/controllers/balance.js
+++ b/app/scripts/controllers/balance.js
@@ -11,7 +11,7 @@ class BalanceController {
* @param {Object} opts Initialize various properties of the class.
* @property {string} address A base 16 hex string. The account address which has the balance managed by this
* BalanceController.
- * @property {AccountTracker} accountTracker Contains and updates the users accounts; is the source of the account
+ * @property {AccountTracker} accountTracker Stores and updates the users accounts
* for which this BalanceController manages balance.
* @property {TransactionController} txController Stores, tracks and manages transactions. Here used to create a listener for
* transaction updates.
@@ -58,7 +58,7 @@ class BalanceController {
/**
* Sets up listeners and subscriptions which should trigger an update of ethBalance. These updates include:
- * - when a transaction changes to a submitted, confirmed or failed state
+ * - when a transaction changes state to 'submitted', 'confirmed' or 'failed'
* - when the current account changes (i.e. a new account is selected)
* - when there is a block update
*