From 14089c93602ec5c8bbdaecb3ff04b424f07eef0f Mon Sep 17 00:00:00 2001 From: Brandon Dail Date: Mon, 14 Nov 2016 17:35:32 -0600 Subject: [PATCH] Update reference-react-dom.md (#8285) Add missing closing bracket (cherry picked from commit cdcbf2f39b7cf2df9a9efaa456510f5283f9b69d) --- docs/docs/reference-react-dom.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/reference-react-dom.md b/docs/docs/reference-react-dom.md index 0053e0a331..9161e95de7 100644 --- a/docs/docs/reference-react-dom.md +++ b/docs/docs/reference-react-dom.md @@ -38,7 +38,7 @@ ReactDOM.render( ) ``` -Render a React element into the DOM in the supplied `container` and return a [reference](/react/docs/more-about-refs.html) to the component (or returns `null` for [stateless components](/react/docs/components-and-props.html#functional-and-class-components). +Render a React element into the DOM in the supplied `container` and return a [reference](/react/docs/more-about-refs.html) to the component (or returns `null` for [stateless components](/react/docs/components-and-props.html#functional-and-class-components)). If the React element was previously rendered into `container`, this will perform an update on it and only mutate the DOM as necessary to reflect the latest React element.