summaryrefslogtreecommitdiffstats
path: root/src/store/importState.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/importState.js')
-rw-r--r--src/store/importState.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/store/importState.js b/src/store/importState.js
index 871fa15b..98bb39a8 100644
--- a/src/store/importState.js
+++ b/src/store/importState.js
@@ -53,7 +53,7 @@ const mutations = {
* Set the total number of contacts
*
* @param {Object} state the store data
- * @param {String} total the total number of contacts to import
+ * @param {string} total the total number of contacts to import
*/
setTotal(state, total) {
state.importState.total = total
@@ -63,7 +63,7 @@ const mutations = {
* Set the address book name
*
* @param {Object} state the store data
- * @param {String} addressbook the name of the address book to import into
+ * @param {string} addressbook the name of the address book to import into
*/
setAddressbook(state, addressbook) {
state.importState.addressbook = addressbook
@@ -73,7 +73,7 @@ const mutations = {
* Change stage to the indicated one
*
* @param {Object} state the store data
- * @param {String} stage the name of the stage ('default', 'importing', 'parsing')
+ * @param {string} stage the name of the stage ('default', 'importing', 'parsing')
*/
changeStage(state, stage) {
state.importState.stage = stage
@@ -118,7 +118,7 @@ const actions = {
* Set the total number of contacts
*
* @param {Object} context the store mutations
- * @param {String} total the total number of contacts to import
+ * @param {string} total the total number of contacts to import
*/
setTotal(context, total) {
context.commit('setTotal', total)
@@ -128,7 +128,7 @@ const actions = {
* Set the address book name
*
* @param {Object} context the store mutations
- * @param {String} addressbook the name of the address book to import into
+ * @param {string} addressbook the name of the address book to import into
*/
setAddressbook(context, addressbook) {
context.commit('setAddressbook', addressbook)
@@ -139,7 +139,7 @@ const actions = {
* and reset if the parsing starts
*
* @param {Object} context the store mutations
- * @param {String} stage the name of the stage ('default', 'importing', 'parsing')
+ * @param {string} stage the name of the stage ('default', 'importing', 'parsing')
*/
changeStage(context, stage) {
context.commit('changeStage', stage)