Skip to content

Commit 18f5b97

Browse files
committed
2 parents cb34e4a + cfde667 commit 18f5b97

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

README.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -81,17 +81,17 @@ $ npm start # Compile and launch
8181
$ npm run build # or, `npm run build -- release`
8282
```
8383

84-
By default, it builds in a *debug* mode. If you need to build in a release
85-
mode, just add `-- release` flag. This will optimize the output bundle for
86-
production deployment.
84+
By default, it builds in *debug* mode. If you need to build in release
85+
mode, just add a `-- release` flag. This will optimize the output bundle for
86+
production.
8787

8888
### How to Run
8989

9090
```shell
9191
$ npm start # or, `npm start -- release`
9292
```
9393

94-
This will start a lightweight development server with "live reload" and
94+
This will start a light-weight development server with "live reload" and
9595
synchronized browsing across multiple devices and browsers.
9696

9797
### How to Deploy
@@ -104,7 +104,7 @@ For more information see `tools/deploy.js`.
104104

105105
### How to Update
106106

107-
You can always fetch and merge the recent changes from this repo back into
107+
You can always fetch and merge recent changes from this repo back into
108108
your own project:
109109

110110
```shell
@@ -124,17 +124,16 @@ $ npm test
124124
```
125125

126126
Test any javascript module by creating a `__tests__/` directory where
127-
the file is. Name the test by appending `-test.js` to the js file.
128-
[Jest](https://facebook.github.io/jest/) will do the rest.
127+
the file is. Append `-test.js` to the filename and [Jest](https://facebook.github.io/jest/) will do the rest.
129128

130129
### Visit Our Sponsor
131130

132-
[![https://dl.dropboxusercontent.com/u/16006521/react-starter-kit/makers-academy.png]](http://www.makersacademy.com/?utm_source=ReactStarterKit&utm_medium=link&utm_campaign=ReactStarterKitGithub)
131+
[![Makers Academy](https://dl.dropboxusercontent.com/u/16006521/react-starter-kit/makers-academy.png)](http://www.makersacademy.com/?utm_source=ReactStarterKit&utm_medium=link&utm_campaign=ReactStarterKitGithub)
133132

134133
### Related Projects
135134

136-
* [React Static Boilerplate](https://github.com/koistya/react-static-boilerplate) — Generates a static website from React components
137-
* [Babel Starter Kit](https://github.com/kriasoft/babel-starter-kit)A boilerplate for authoring JavaScript/React.js libraries
135+
* [React Static Boilerplate](https://github.com/koistya/react-static-boilerplate) — Generates static websites from React components
136+
* [Babel Starter Kit](https://github.com/kriasoft/babel-starter-kit)Boilerplate for authoring JavaScript/React.js libraries
138137
* [React Decorators](https://github.com/kriasoft/react-decorators) — A collection of higher-order React components
139138

140139
### Learn More

src/components/Link/Link.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Link extends Component {
2020
onClick: PropTypes.func,
2121
};
2222

23-
static handleClick = event => {
23+
static handleClick(event) {
2424
let allowTransition = true;
2525
let clickResult;
2626

@@ -44,7 +44,7 @@ class Link extends Component {
4444
this.props && this.props.state || null,
4545
this.props && this.props.to || (link.pathname + link.search));
4646
}
47-
};
47+
}
4848

4949
render() {
5050
const { to, children, ...props } = this.props;

0 commit comments

Comments
 (0)