Skip to content

Commit 4280166

Browse files
committed
Docs: Fixed some typos
1 parent ed125f5 commit 4280166

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/usage/usage-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This is good in some cases, because it gives you flexibility, but that flexibili
1313

1414
As described in the [Quick Start](../introduction/getting-started.md) page, the goal of Redux Toolkit is to help simplify common Redux use cases. It is not intended to be a complete solution for everything you might want to do with Redux, but it should make a lot of the Redux-related code you need to write a lot simpler (or in some cases, eliminate some of the hand-written code entirely).
1515

16-
Redux Toolkit exports several individual functions that you can use in your application, and adds dependencies on some other packages that are commonly used with Redux. This lets you decide how to use these in your own application, whether it be a brand new project or updating a large existing app.
16+
Redux Toolkit exports several individual functions that you can use in your application, and adds dependencies of some other packages that are commonly used with Redux. This lets you decide how to use these in your own application, whether it be a brand new project or updating a large existing app.
1717

1818
Let's look at some of the ways that Redux Toolkit can help make your Redux-related code better.
1919

@@ -997,7 +997,7 @@ export const usersAdapter = createEntityAdapter({
997997
`createEntityAdapter` provides a `sortComparer` argument that you can leverage to sort the collection of `ids` in state. This can be very useful for when you want to guarantee a sort order and your data doesn't come presorted.
998998

999999
```js
1000-
// In this instance, our user data always has a primary key of `idx`
1000+
// In this instance, our user data always has a primary key of `id`
10011001
const userData = {
10021002
users: [
10031003
{ id: 1, first_name: 'Test' },

0 commit comments

Comments
 (0)