diff --git a/data/index.js b/data/index.js index 0dc21d1f51c3b..841b5263ac054 100644 --- a/data/index.js +++ b/data/index.js @@ -19,7 +19,7 @@ const initialReducer = () => ( {} ); const store = createStore( initialReducer, {}, flowRight( enhancers ) ); /** - * Registers a new sub reducer to the global state and returns a Redux-like store object. + * Registers a new sub-reducer to the global state and returns a Redux-like store object. * * @param {string} reducerKey Reducer key. * @param {Object} reducer Reducer function. @@ -93,7 +93,7 @@ export const query = ( mapSelectorsToProps ) => ( WrappedComponent ) => { * @param {string} reducerKey Part of the state shape to register the * selectors for. * @param {string} selectorName Selector name. - * @param {*} args Selectors args. + * @param {*} args Selectors arguments. * * @returns {*} The selector's returned value. */