summaryrefslogtreecommitdiffstats
path: root/src/store/groups.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/groups.js')
-rw-r--r--src/store/groups.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/store/groups.js b/src/store/groups.js
index 1f92b5dd..e6cfd4e1 100644
--- a/src/store/groups.js
+++ b/src/store/groups.js
@@ -80,7 +80,7 @@ const mutations = {
*
* @param {Object} state the store data
* @param {Object} data destructuring object
- * @param {String} data.groupName the name of the group
+ * @param {string} data.groupName the name of the group
* @param {Contact} data.contact the contact
*/
removeContactToGroup(state, { groupName, contact }) {
@@ -103,7 +103,7 @@ const actions = {
*
* @param {Object} context the store mutations
* @param {Object} data destructuring object
- * @param {String} data.groupName the name of the group
+ * @param {string} data.groupName the name of the group
* @param {Contact} data.contact the contact
*/
addContactToGroup(context, { groupName, contact }) {
@@ -115,7 +115,7 @@ const actions = {
*
* @param {Object} context the store mutations
* @param {Object} data destructuring object
- * @param {String} data.groupName the name of the group
+ * @param {string} data.groupName the name of the group
* @param {Contact} data.contact the contact
*/
removeContactToGroup(context, { groupName, contact }) {