Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs remove link to wiki page #758

Merged
merged 1 commit into from
Dec 31, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/tips/01-introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ The React tips section provides bite-sized information that can answer lots of q

## Contributing

Submit a pull request to the [React repository](https://github.com/facebook/react) following the [current tips](https://github.com/facebook/react/tree/master/docs) entries' style. If you have a recipe that needs review prior to submitting a PR you can find help in the [#reactjs channel on freenode](irc://chat.freenode.net/reactjs) or the [reactjs Google group](http://groups.google.com/group/reactjs). Also, check the [Tips Wiki](https://github.com/facebook/react/wiki/Tips-(Previously-Cookbook)) for entries in-progress and general guidelines on writing React tips.
Submit a pull request to the [React repository](https://github.com/facebook/react) following the [current tips](https://github.com/facebook/react/tree/master/docs) entries' style. If you have a recipe that needs review prior to submitting a PR you can find help in the [#reactjs channel on freenode](irc://chat.freenode.net/reactjs) or the [reactjs Google group](http://groups.google.com/group/reactjs).
4 changes: 2 additions & 2 deletions docs/tips/10-props-in-getInitialState-as-anti-pattern.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Using props, passed down from parent, to generate state in `getInitialState` oft

var MessageBox = React.createClass({
getInitialState: function() {
return {nameWithQualifier: "Mr. " + this.props.name};
return {nameWithQualifier: 'Mr. ' + this.props.name};
},

render: function() {
Expand All @@ -38,7 +38,7 @@ Better:

var MessageBox = React.createClass({
render: function() {
return <div>{"Mr. " + this.props.name}</div>;
return <div>{'Mr. ' + this.props.name}</div>;
}
});

Expand Down
2 changes: 1 addition & 1 deletion docs/tips/13-false-in-jsx.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Renders as `id="false"`:
React.renderComponent(<div id={false} />, mountNode);
```

String "false" as input value:
String `"false"` as input value:

```js
/** @jsx React.DOM */
Expand Down