Skip to content

Commit ca5d6cf

Browse files
evertbouwmarkerikson
authored andcommitted
fix typo in createReducer.ts (#261)
1 parent c646304 commit ca5d6cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/createReducer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { AnyAction, Action, Reducer } from 'redux'
77
export type Actions<T extends keyof any = string> = Record<T, Action>
88

99
/**
10-
* An *case reducer* is a reducer function for a speficic action type. Case
10+
* An *case reducer* is a reducer function for a specific action type. Case
1111
* reducers can be composed to full reducers using `createReducer()`.
1212
*
1313
* Unlike a normal Redux reducer, a case reducer is never called with an
@@ -46,7 +46,7 @@ export type CaseReducers<S, AS extends Actions> = {
4646
*
4747
* @param initialState The initial state to be returned by the reducer.
4848
* @param actionsMap A mapping from action types to action-type-specific
49-
* case redeucers.
49+
* case reducers.
5050
*/
5151
export function createReducer<
5252
S,

0 commit comments

Comments
 (0)