From 5de05591923fb30900ef419f56fd3acb6a0f2e80 Mon Sep 17 00:00:00 2001 From: lukebarnard Date: Wed, 13 Dec 2017 10:39:45 +0000 Subject: [PATCH] Adjust actionCreators doc --- src/actions/actionCreators.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/actions/actionCreators.js b/src/actions/actionCreators.js index 60c5031f95..624401b9ce 100644 --- a/src/actions/actionCreators.js +++ b/src/actions/actionCreators.js @@ -21,8 +21,8 @@ limitations under the License. * suffix determining whether it is pending, successful or * a failure. * @param {function} fn a function that returns a Promise. - * @returns {function} a function that uses its single argument as a dispatch - * function. + * @returns {function} an asyncronous action creator - a function that uses its + * single argument as a dispatch function. */ export function asyncAction(id, fn) { return (dispatch) => {