aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-04-17 06:15:27 +0800
committerDan <danjm.com@gmail.com>2018-04-17 06:15:27 +0800
commit23acddf8f6fe4cb2d23e9b508c9b95f1f50fe32a (patch)
treeb49be589fe90ad314f50d5a0e7602091638d63d7
parent20a075657f9c8133b65ea9cf6e8f1f633bc8a8e6 (diff)
downloadtangerine-wallet-browser-23acddf8f6fe4cb2d23e9b508c9b95f1f50fe32a.tar.gz
tangerine-wallet-browser-23acddf8f6fe4cb2d23e9b508c9b95f1f50fe32a.tar.zst
tangerine-wallet-browser-23acddf8f6fe4cb2d23e9b508c9b95f1f50fe32a.zip
@params -> @param fix
-rw-r--r--app/scripts/controllers/currency.js8
-rw-r--r--app/scripts/controllers/shapeshift.js4
-rw-r--r--app/scripts/lib/nodeify.js4
3 files changed, 8 insertions, 8 deletions
diff --git a/app/scripts/controllers/currency.js b/app/scripts/controllers/currency.js
index 275219ce4..6b166c151 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')
// every ten minutes
@@ -48,7 +48,7 @@ class CurrencyController {
/**
* A setter for the currentCurrency property
*
- * @params {string} currentCurrency The new currency to set as the currentCurrency in the store
+ * @param {string} currentCurrency The new currency to set as the currentCurrency in the store
*
*/
setCurrentCurrency (currentCurrency) {
@@ -68,7 +68,7 @@ class CurrencyController {
/**
* A setter for the conversionRate property
*
- * @params {number} conversionRate The new rate to set as the conversionRate in the store
+ * @param {number} conversionRate The new rate to set as the conversionRate in the store
*
*/
setConversionRate (conversionRate) {
@@ -89,7 +89,7 @@ class CurrencyController {
/**
* A setter for the conversionDate property
*
- * @params {number} conversionDate The date, expressed in milliseconds since midnight of January 1, 1970, that the
+ * @param {number} conversionDate The date, expressed in milliseconds since midnight of January 1, 1970, that the
* conversionRate was set
*
*/
diff --git a/app/scripts/controllers/shapeshift.js b/app/scripts/controllers/shapeshift.js
index b24b010ea..10753b722 100644
--- a/app/scripts/controllers/shapeshift.js
+++ b/app/scripts/controllers/shapeshift.js
@@ -117,7 +117,7 @@ class ShapeshiftController {
* Saves an updated to a ShapeShiftTx in the shapeShiftTxList. If the passed ShapeShiftTx is not in the
* shapeShiftTxList, nothing happens.
*
- * @params {ShapeShiftTx} tx The updated tx to save, if it exists in the current shapeShiftTxList
+ * @param {ShapeShiftTx} tx The updated tx to save, if it exists in the current shapeShiftTxList
*
*/
saveTx (tx) {
@@ -132,7 +132,7 @@ class ShapeshiftController {
/**
* Removes a ShapeShiftTx from the shapeShiftTxList
*
- * @params {ShapeShiftTx} tx The tx to remove
+ * @param {ShapeShiftTx} tx The tx to remove
*
*/
removeShapeShiftTx (tx) {
diff --git a/app/scripts/lib/nodeify.js b/app/scripts/lib/nodeify.js
index d568035c0..0a3891ac3 100644
--- a/app/scripts/lib/nodeify.js
+++ b/app/scripts/lib/nodeify.js
@@ -5,8 +5,8 @@ const noop = function () {}
* A generator that returns a function which, when passed a promise, can treat that promise as a node style callback.
* The primse advantage being that callbacks are better for error handling.
*
- * @params {Function} fn The function to handle as a callback
- * @params {Object} context The context in which the fn is to be called, most often a this reference
+ * @param {Function} fn The function to handle as a callback
+ * @param {Object} context The context in which the fn is to be called, most often a this reference
*
*/
module.exports = function nodeify (fn, context) {