aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/controllers
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2018-06-12 01:17:09 +0800
committerkumavis <aaron@kumavis.me>2018-06-12 01:17:09 +0800
commit0db776c3cc58e817d108d38ca389893cb13e3f92 (patch)
treefeb4a4d0465e0c38663a8fa0029def660193b973 /app/scripts/controllers
parent0fa90149868d5c21bca75e318a392e1ecb77c6f0 (diff)
downloadtangerine-wallet-browser-0db776c3cc58e817d108d38ca389893cb13e3f92.tar
tangerine-wallet-browser-0db776c3cc58e817d108d38ca389893cb13e3f92.tar.gz
tangerine-wallet-browser-0db776c3cc58e817d108d38ca389893cb13e3f92.tar.bz2
tangerine-wallet-browser-0db776c3cc58e817d108d38ca389893cb13e3f92.tar.lz
tangerine-wallet-browser-0db776c3cc58e817d108d38ca389893cb13e3f92.tar.xz
tangerine-wallet-browser-0db776c3cc58e817d108d38ca389893cb13e3f92.tar.zst
tangerine-wallet-browser-0db776c3cc58e817d108d38ca389893cb13e3f92.zip
lint - controllers - whitepace fix
Diffstat (limited to 'app/scripts/controllers')
-rw-r--r--app/scripts/controllers/currency.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/scripts/controllers/currency.js b/app/scripts/controllers/currency.js
index 480c08b1c..d5bc5fe2b 100644
--- a/app/scripts/controllers/currency.js
+++ b/app/scripts/controllers/currency.js
@@ -1,4 +1,4 @@
- const ObservableStore = require('obs-store')
+const ObservableStore = require('obs-store')
const extend = require('xtend')
const log = require('loglevel')
@@ -16,9 +16,9 @@ class CurrencyController {
* currentCurrency, conversionRate and conversionDate properties
* @property {string} currentCurrency A 2-4 character shorthand that describes a specific currency, currently
* selected by the user
- * @property {number} conversionRate The conversion rate from ETH to the selected currency.
+ * @property {number} conversionRate The conversion rate from ETH to the selected currency.
* @property {string} conversionDate The date at which the conversion rate was set. Expressed in in milliseconds
- * since midnight of January 1, 1970
+ * since midnight of January 1, 1970
* @property {number} conversionInterval The id of the interval created by the scheduleConversionInterval method.
* Used to clear an existing interval on subsequent calls of that method.
*
@@ -59,7 +59,7 @@ class CurrencyController {
/**
* A getter for the conversionRate property
*
- * @returns {string} The conversion rate from ETH to the selected currency.
+ * @returns {string} The conversion rate from ETH to the selected currency.
*
*/
getConversionRate () {
@@ -80,7 +80,7 @@ class CurrencyController {
* A getter for the conversionDate property
*
* @returns {string} The date at which the conversion rate was set. Expressed in milliseconds since midnight of
- * January 1, 1970
+ * January 1, 1970
*
*/
getConversionDate () {