Skip to content

Commit a5a56d5

Browse files
committed
docs: correct use API naming to inject naming
1 parent 25af7d6 commit a5a56d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/tutorials/quick-start.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export default store;
143143

144144
### Use Redux State and Actions in Angular Components
145145

146-
Now we can use the Angular Redux inject functions to let Angular components interact with the Redux store. We can read data from the store with `useSelector`, and dispatch actions using `useDispatch`. Create a `src/features/counter/counter.component.ts` file with a `<app-counter>` component inside, then import that component into `app.component.ts` and render it inside of `<app-root>`.
146+
Now we can use the Angular Redux inject functions to let Angular components interact with the Redux store. We can read data from the store with `injectSelector`, and dispatch actions using `injectDispatch`. Create a `src/features/counter/counter.component.ts` file with a `<app-counter>` component inside, then import that component into `app.component.ts` and render it inside of `<app-root>`.
147147

148148
```typescript title="features/counter/counter.component.ts"
149149
import { Component } from "@angular/core";

0 commit comments

Comments
 (0)