Skip to content

Commit abd8e17

Browse files
committed
docs: fix import paths
1 parent 5e7dc99 commit abd8e17

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/introduction/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Angular Redux includes a `provideRedux` provider factory, which makes the Redux
6262

6363
```typescript
6464
import { bootstrapApplication } from "@angular/platform-browser";
65-
import { provideRedux } from "angular-redux";
65+
import { provideRedux } from "@reduxjs/angular-redux";
6666
import { AppComponent } from "./app/app.component";
6767
import { store } from "./store";
6868

docs/tutorials/quick-start.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ For this tutorial, we assume that you're using Redux Toolkit and Angular Redux t
4040
Add the Redux Toolkit and Angular Redux packages to your project:
4141

4242
```sh
43-
npm install @reduxjs/toolkit angular-redux
43+
npm install @reduxjs/toolkit @reduxjs/angular-redux
4444
```
4545

4646
### Create a Redux Store
@@ -65,7 +65,7 @@ Once the store is created, we can make it available to our Angular components by
6565
import { bootstrapApplication } from "@angular/platform-browser";
6666
import { AppComponent } from "./app/app.component";
6767
// highlight-start
68-
import { provideRedux } from "angular-redux";
68+
import { provideRedux } from "@reduxjs/angular-redux";
6969
import { store } from "./store";
7070
// highlight-end
7171

0 commit comments

Comments
 (0)