Skip to content

Commit 1774987

Browse files
authored
Correct npm instructions in Intermediate Tutorial (#340)
As of npm v5, `--save` is no longer necessary with `npm install`. Removing that flag makes the `npm install` command match the one given in the Intermediate Tutorial.
1 parent b2b4335 commit 1774987

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/introduction/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Redux Toolkit is available as a package on NPM for use with a module bundler or
3939

4040
```bash
4141
# NPM
42-
npm install --save @reduxjs/toolkit
42+
npm install @reduxjs/toolkit
4343

4444
# Yarn
4545
yarn add @reduxjs/toolkit

0 commit comments

Comments
 (0)