Skip to content

Commit

Permalink
Fix of a typo in AsyncActions.md
Browse files Browse the repository at this point in the history
A missing `>` was located at line reduxjs#379
  • Loading branch information
jamesxv7 authored Apr 10, 2017
1 parent 154dee5 commit 38c3ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/advanced/AsyncActions.md
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ export function fetchPosts(subreddit) {
>We use [`fetch` API](https://developer.mozilla.org/en/docs/Web/API/Fetch_API) in the examples. It is a new API for making network requests that replaces `XMLHttpRequest` for most common needs. Because most browsers don't yet support it natively, we suggest that you use [`isomorphic-fetch`](/~https://github.com/matthew-andrews/isomorphic-fetch) library:
>```js
// Do this in every file where you use `fetch`
>// Do this in every file where you use `fetch`
>import fetch from 'isomorphic-fetch'
>```
Expand Down

0 comments on commit 38c3ddd

Please sign in to comment.