remove markdown remnant & unnecessary whitespace

This commit is contained in:
Kevin Coughlin 2015-07-22 22:26:03 -04:00
parent e685da53ee
commit 60a081e66b
1 changed files with 4 additions and 4 deletions

View File

@ -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 Reacts DOM diffing algorithm for efficient
> inside are replaced when first called. Later calls use Reacts 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.