Browse Source

Update Korean translation to d402bd3

main
Shim Won 10 years ago
parent
commit
03e7cc7d9b
  1. 2
      docs/05-reusable-components.ko-KR.md
  2. 2
      docs/10.4-test-utils.ko-KR.md

2
docs/05-reusable-components.ko-KR.md

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

2
docs/10.4-test-utils.ko-KR.md

@ -30,7 +30,7 @@ React.addons.TestUtils.Simulate.keyDown(node, {key: "Enter"});
### renderIntoDocument ### renderIntoDocument
```javascript ```javascript
ReactComponent renderIntoDocument(ReactComponent instance) ReactComponent renderIntoDocument(ReactElement instance)
``` ```
문서의 detach된 DOM 노드에 컴포넌트를 렌더합니다. **이 기능은 DOM을 필요로 합니다.** 문서의 detach된 DOM 노드에 컴포넌트를 렌더합니다. **이 기능은 DOM을 필요로 합니다.**

Loading…
Cancel
Save