Skip to content

Commit

Permalink
docs: fix jsdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
nzambello committed Mar 15, 2021
1 parent 9e2038a commit b776472
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/actions/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* submitForm actions.
* exportCsvFormData action
* @module actions/submitForm
*/

Expand All @@ -8,7 +8,7 @@ export const SUBMIT_FORM_ACTION = 'SUBMIT_FORM_ACTION';
/**
* submitForm function
* @function submitForm
* @param {string} pat
* @param {string} path
* @param {string} block_id
* @param {Object} data
* @returns {Object} attachments
Expand All @@ -30,7 +30,7 @@ export function submitForm(path = '', block_id, data, attachments) {

/**
* exportCsvFormData action
* @modulee actions/exportCsvFormData
* @module actions/exportCsvFormData
*/
export const EXPORT_CSV_FORMDATA = 'EXPORT_CSV_FORMDATA';

Expand All @@ -46,7 +46,7 @@ export function exportCsvFormData(path = '') {

/**
* getFormData action
* @modulee actions/getFormData
* @module actions/getFormData
*/
export const GET_FORM_DATA = 'GET_FORMDATA';

Expand All @@ -62,7 +62,7 @@ export function getFormData(path = '') {

/**
* clearFormData action
* @modulee actions/getFormData
* @module actions/getFormData
*/
export const CLEAR_FORM_DATA = 'CLEAR_FORM_DATA';

Expand Down

0 comments on commit b776472

Please sign in to comment.