Feedback on the site at http://reactjs.net/getting-started/tutorial.html: This tutorial needs to be updated to not include the calls to: ``` this.refs.author.getDOMNode().value this.refs.text.getDOMNode().value ``` They instead should be: ``` this.refs.author.value this.refs.text.value ```