Skip to content

Commit d6e104d

Browse files
author
Ari
committed
Updated post for day 1
1 parent 737b599 commit d6e104d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

day-1/post.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Although it might look a little scary, the JavaScript code is a single line that
7272

7373
Unlike many of its predecessors, React operates not directly on the browser's Document Object Model (DOM) immediately, but on a **virtual DOM**. That is, rather than manipulating the `document` in a browser after changes to our data (which can be quite slow) it resolves changes on a DOM built and run entirely in memory. After the virtual DOM has been updated, React intelligently determines what changes to make to the actual browser's DOM.
7474

75-
The [React Virtual DOM](https://facebook.github.io/react/docs/dom-differences.html) exists entirely in-memory and is a representation of the web browser's DOM. Because of this, we when we write a React component, we're not writing directly to the DOM, but we're writing a virtual component that React will turn into the DOM.
75+
The [React Virtual DOM](https://facebook.github.io/react/docs/dom-differences.html) exists entirely in-memory and is a representation of the web browser's DOM. Because of this, when we write a React component, we're not writing directly to the DOM, but we're writing a virtual component that React will turn into the DOM.
7676

7777
In the next article, we'll look at what this means for us as we build our React components and jump into JSX and writing our first real components.
7878

0 commit comments

Comments
 (0)