Skip to content

Commit

Permalink
Fix Japanese/Italian/Korean tutorials (#7020)
Browse files Browse the repository at this point in the history
* Fix japanese tutorial

* Fix Italian tutorial as same as e4fe662

* Fix Korean tutorial as same as e4fe662
  • Loading branch information
serima authored and keyz committed Jun 12, 2016
1 parent c7868cc commit e487c36
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/docs/tutorial.it-IT.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ var CommentList = React.createClass({
render: function() {
var commentNodes = this.props.data.map(function (comment) {
return (
<Comment author={comment.author}>
<Comment author={comment.author} key={comment.id}>
{comment.text}
</Comment>
);
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/tutorial.ja-JP.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ var CommentList = React.createClass({
render: function() {
var commentNodes = this.props.data.map(function (comment) {
return (
<Comment author={comment.author}>
<Comment author={comment.author} key={comment.id}>
{comment.text}
</Comment>
);
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/tutorial.ko-KR.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ var CommentList = React.createClass({
render: function() {
var commentNodes = this.props.data.map(function (comment) {
return (
<Comment author={comment.author}>
<Comment author={comment.author} key={comment.id}>
{comment.text}
</Comment>
);
Expand Down

0 comments on commit e487c36

Please sign in to comment.