From 7f2201c945cec1b4487ccd490f0f6372ac7a7f4d Mon Sep 17 00:00:00 2001 From: Alfred Melch Date: Sat, 1 Feb 2020 17:21:18 +0100 Subject: [PATCH] change doc --- lib/potent-reducer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/potent-reducer.js b/lib/potent-reducer.js index 253e022..d8eab28 100644 --- a/lib/potent-reducer.js +++ b/lib/potent-reducer.js @@ -1,6 +1,6 @@ import React, { createContext, useContext, useMemo, useReducer } from 'react' -/** Takes objects that fully define a store and turns it into a more potent reducer */ +/** Takes options that fully define a store and turns it into a more potent reducer */ export const usePotentReducer = options => { const { reducer = {}, thunks = {}, initialState } = options const { onUpdate, logging } = options