Update Korean translation to d402bd3

This commit is contained in:
Shim Won
2015-04-05 09:41:51 +09:00
parent d6752b5da0
commit 03e7cc7d9b
2 changed files with 2 additions and 2 deletions

View File

@@ -152,7 +152,7 @@ var SetIntervalMixin = {
this.intervals.push(setInterval.apply(null, arguments));
},
componentWillUnmount: function() {
this.intervals.map(clearInterval);
this.intervals.forEach(clearInterval);
}
};

View File

@@ -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을 필요로 합니다.**