Skip to content

Commit 07664c8

Browse files
thomaszdxsnmarkerikson
authored andcommitted
fix a deprecated dependency description (#199)
1 parent 59a85be commit 07664c8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/introduction/quick-start.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ Redux Starter Kit includes:
3131
- A [`createReducer()` utility](../api/createReducer.md) that lets you supply a lookup table of action types to case reducer functions, rather than writing switch statements. In addition, it automatically uses the [`immer` library](https://github.com/mweststrate/immer) to let you write simpler immutable updates with normal mutative code, like `state.todos[3].completed = true`.
3232
- A [`createAction()` utility](../api/createAction.md) that returns an action creator function for the given action type string. The function itself has `toString()` defined, so that it can be used in place of the type constant.
3333
- A [`createSlice()` function](../api/createSlice.md) that accepts a set of reducer functions, a slice name, and an initial state value, and automatically generates corresponding action creators, types, and simple selector functions.
34-
- An improved version of the widely used [`createSelector` utility](../api/createSelector.md) for creating memoized selector functions, which can accept string keypaths as "input selectors" (re-exported from the [`selectorator` library](https://github.com/planttheidea/selectorator)).
34+
- The `createSelector` utility from the [Reselect](https://github.com/reduxjs/reselect) library, re-exported for ease of use.
35+
3536

3637
## Installation
3738

0 commit comments

Comments
 (0)