docs remove link to wiki page

Also some minor writing changes.
This commit is contained in:
Cheng Lou
2013-12-30 23:38:01 -05:00
committed by Vjeux
parent 32753c59d4
commit c5a2ca997c
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -10,4 +10,4 @@ The React tips section provides bite-sized information that can answer lots of q
## Contributing ## 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).
@@ -20,7 +20,7 @@ Using props, passed down from parent, to generate state in `getInitialState` oft
var MessageBox = React.createClass({ var MessageBox = React.createClass({
getInitialState: function() { getInitialState: function() {
return {nameWithQualifier: "Mr. " + this.props.name}; return {nameWithQualifier: 'Mr. ' + this.props.name};
}, },
render: function() { render: function() {
@@ -38,7 +38,7 @@ Better:
var MessageBox = React.createClass({ var MessageBox = React.createClass({
render: function() { render: function() {
return <div>{"Mr. " + this.props.name}</div>; return <div>{'Mr. ' + this.props.name}</div>;
} }
}); });
+1 -1
View File
@@ -16,7 +16,7 @@ Renders as `id="false"`:
React.renderComponent(<div id={false} />, mountNode); React.renderComponent(<div id={false} />, mountNode);
``` ```
String "false" as input value: String `"false"` as input value:
```js ```js
/** @jsx React.DOM */ /** @jsx React.DOM */