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

Update Korean translation to d402bd3 #3588

Merged
merged 1 commit into from
Apr 5, 2015
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/docs/05-reusable-components.ko-KR.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ var SetIntervalMixin = {
this.intervals.push(setInterval.apply(null, arguments));
},
componentWillUnmount: function() {
this.intervals.map(clearInterval);
this.intervals.forEach(clearInterval);
}
};

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/10.4-test-utils.ko-KR.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ React.addons.TestUtils.Simulate.keyDown(node, {key: "Enter"});
### renderIntoDocument

```javascript
ReactComponent renderIntoDocument(ReactComponent instance)
ReactComponent renderIntoDocument(ReactElement instance)
```

문서의 detach된 DOM 노드에 컴포넌트를 렌더합니다. **이 기능은 DOM을 필요로 합니다.**
Expand Down