From c8ef2feda98d8cc9fb59829148b3db1671ac3b9b Mon Sep 17 00:00:00 2001 From: John Lin Date: Tue, 23 Oct 2018 13:39:23 +0800 Subject: [PATCH] Remove redundant word "the" (#13919) --- packages/react-dom/src/client/ReactDOMInput.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react-dom/src/client/ReactDOMInput.js b/packages/react-dom/src/client/ReactDOMInput.js index 9a0527742a..c449e6b620 100644 --- a/packages/react-dom/src/client/ReactDOMInput.js +++ b/packages/react-dom/src/client/ReactDOMInput.js @@ -277,7 +277,7 @@ export function postMountWrapper( } } else { // When syncing the value attribute, the value property should use - // the the wrapperState._initialValue property. This uses: + // the wrapperState._initialValue property. This uses: // // 1. The value React property when present // 2. The defaultValue React property when present @@ -330,7 +330,7 @@ export function postMountWrapper( node.defaultChecked = !!props.defaultChecked; } } else { - // When syncing the checked attribute, both the the checked property and + // When syncing the checked attribute, both the checked property and // attribute are assigned at the same time using defaultChecked. This uses: // // 1. The checked React property when present