Skip to content

Commit 6b60530

Browse files
Chris HeikkinenChris Heikkinen
authored andcommitted
Update whitespace
1 parent f4f101b commit 6b60530

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
React Redux
22
=========================
33

4-
Official React bindings for [Redux](https://github.com/reactjs/redux).
4+
Official React bindings for [Redux](https://github.com/reactjs/redux).
55
Performant and flexible.
66

77
[![build status](https://img.shields.io/travis/reactjs/react-redux/master.svg?style=flat-square)](https://travis-ci.org/reactjs/react-redux) [![npm version](https://img.shields.io/npm/v/react-redux.svg?style=flat-square)](https://www.npmjs.com/package/react-redux)
@@ -37,7 +37,7 @@ If you are on an older version of React Native, you’ll need to keep using [Rea
3737

3838
## How Does It Work?
3939

40-
We do a deep dive on how React Redux works in [this readthesource episode](https://www.youtube.com/watch?v=VJ38wSFbM3A).
40+
We do a deep dive on how React Redux works in [this readthesource episode](https://www.youtube.com/watch?v=VJ38wSFbM3A).
4141
Enjoy!
4242

4343
## License

docs/api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ ReactDOM.render(
5353

5454
Connects a React component to a Redux store.
5555

56-
It does not modify the component class passed to it.
56+
It does not modify the component class passed to it.
5757
Instead, it *returns* a new, connected component class, for you to use.
5858

5959
#### Arguments
@@ -108,8 +108,8 @@ export default connect()(TodoApp)
108108

109109
##### Inject `dispatch` and every field in the global state
110110

111-
>Don’t do this! It kills any performance optimizations because `TodoApp` will rerender after every action.
112-
>It’s better to have more granular `connect()` on several components in your view hierarchy that each only
111+
>Don’t do this! It kills any performance optimizations because `TodoApp` will rerender after every action.
112+
>It’s better to have more granular `connect()` on several components in your view hierarchy that each only
113113
>listen to a relevant slice of the state.
114114
115115
```js

0 commit comments

Comments
 (0)