diff --git a/docs/docs/10.4-test-utils.it-IT.md b/docs/docs/10.4-test-utils.it-IT.md index 5ba199971e..2cf3262fd7 100644 --- a/docs/docs/10.4-test-utils.it-IT.md +++ b/docs/docs/10.4-test-utils.it-IT.md @@ -30,7 +30,7 @@ React.addons.TestUtils.Simulate.click(node); ```javascript var node = ReactDOM.findDOMNode(this.refs.input); -node.value = 'giraffe' +node.value = 'giraffe'; React.addons.TestUtils.Simulate.change(node); React.addons.TestUtils.Simulate.keyDown(node, {key: "Enter", keyCode: 13, which: 13}); ``` diff --git a/docs/docs/10.4-test-utils.ko-KR.md b/docs/docs/10.4-test-utils.ko-KR.md index 9ce5b9416e..ee44011bf1 100644 --- a/docs/docs/10.4-test-utils.ko-KR.md +++ b/docs/docs/10.4-test-utils.ko-KR.md @@ -36,7 +36,7 @@ ReactTestUtils.Simulate.click(node); ```javascript // var node = this.refs.input; -node.value = 'giraffe' +node.value = 'giraffe'; ReactTestUtils.Simulate.change(node); ReactTestUtils.Simulate.keyDown(node, {key: "Enter", keyCode: 13, which: 13}); ``` diff --git a/docs/docs/10.4-test-utils.md b/docs/docs/10.4-test-utils.md index c08899073d..38b4e16f4b 100644 --- a/docs/docs/10.4-test-utils.md +++ b/docs/docs/10.4-test-utils.md @@ -36,7 +36,7 @@ ReactTestUtils.Simulate.click(node); ```javascript // var node = this.refs.input; -node.value = 'giraffe' +node.value = 'giraffe'; ReactTestUtils.Simulate.change(node); ReactTestUtils.Simulate.keyDown(node, {key: "Enter", keyCode: 13, which: 13}); ``` diff --git a/docs/docs/10.4-test-utils.zh-CN.md b/docs/docs/10.4-test-utils.zh-CN.md index 1734739f14..8a01890d92 100644 --- a/docs/docs/10.4-test-utils.zh-CN.md +++ b/docs/docs/10.4-test-utils.zh-CN.md @@ -36,7 +36,7 @@ ReactTestUtils.Simulate.click(node); ```javascript // var node = this.refs.input; -node.value = 'giraffe' +node.value = 'giraffe'; ReactTestUtils.Simulate.change(node); ReactTestUtils.Simulate.keyDown(node, {key: "Enter", keyCode: 13, which: 13}); ```