From 60a081e66b634a269caf76549b78489dad74f9c9 Mon Sep 17 00:00:00 2001 From: Kevin Coughlin Date: Wed, 22 Jul 2015 22:26:03 -0400 Subject: [PATCH] remove markdown remnant & unnecessary whitespace --- docs/docs/ref-01-top-level-api.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs/ref-01-top-level-api.md b/docs/docs/ref-01-top-level-api.md index 81b7880b25..eefa551338 100644 --- a/docs/docs/ref-01-top-level-api.md +++ b/docs/docs/ref-01-top-level-api.md @@ -88,13 +88,13 @@ If the ReactElement was previously rendered into `container`, this will perform If the optional callback is provided, it will be executed after the component is rendered or updated. > Note: -> +> > `React.render()` controls the contents of the container node you pass in*. Any existing DOM elements -> inside are replaced when first called. Later calls use React’s DOM diffing algorithm for efficient +> inside are replaced when first called. Later calls use React’s DOM diffing algorithm for efficient > updates. > -> \* `React.render()` does not modify the container node (only modifies the children of the container). In -> the future, it may be possible to insert a component to an existing DOM node without overwriting +> `React.render()` does not modify the container node (only modifies the children of the container). In +> the future, it may be possible to insert a component to an existing DOM node without overwriting > the existing children.