Skip to content

Commit 22772c9

Browse files
committed
s/Mock DOM/Virtual DOM/
Let's be consistent with the naming
1 parent f970453 commit 22772c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/docs/07-working-with-the-browser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ next: more-about-refs.html
1010
React provides powerful abstractions that free you from touching the DOM directly in most cases, but sometimes you simply need to access the underlying API, perhaps to work with a third-party library or existing code.
1111

1212

13-
## The Mock DOM
13+
## The Virtual DOM
1414

1515
React is so fast because it never talks to the DOM directly. React maintains a fast in-memory representation of the DOM. `render()` methods return a *description* of the DOM, and React can diff this description with the in-memory representation to compute the fastest way to update the browser.
1616

0 commit comments

Comments
 (0)