Skip to content

Commit 381768f

Browse files
committed
Merge pull request reduxjs#1418 from nhjk/update_docs
Update package name in docs
2 parents 6946bdf + 67648e7 commit 381768f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/advanced/AsyncActions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ export function fetchPosts(subreddit) {
381381
382382
>```js
383383
>// Do this once before any other code in your app
384-
>import 'babel-core/polyfill'
384+
>import 'babel-polyfill'
385385
>```
386386
387387
How do we include the Redux Thunk middleware in the dispatch mechanism? We use the [`applyMiddleware()`](../api/applyMiddleware.md) store enhancer from Redux, as shown below:

docs/advanced/ExampleRedditAPI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This is the complete source code of the Reddit headline fetching example we buil
77
#### `index.js`
88

99
```js
10-
import 'babel-core/polyfill'
10+
import 'babel-polyfill'
1111

1212
import React from 'react'
1313
import { render } from 'react-dom'

0 commit comments

Comments
 (0)