From 6a8795426291f147cf573d0d7ca3ea6ea7416c57 Mon Sep 17 00:00:00 2001 From: Jim Date: Sat, 19 Mar 2016 11:24:27 -0700 Subject: [PATCH] Merge pull request #6281 from rgarifullin/microfix_docs Microfix docs (cherry picked from commit 2f24f89111f957e536f574759409197a1e0377af) --- docs/docs/10.4-test-utils.it-IT.md | 2 +- docs/docs/10.4-test-utils.ko-KR.md | 2 +- docs/docs/10.4-test-utils.md | 2 +- docs/docs/10.4-test-utils.zh-CN.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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}); ```