Skip to content

Commit 3f76bc5

Browse files
Update typo in render-pipeline.md
Change to singular, a tree (without "s").
1 parent 5c39496 commit 3f76bc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/render-pipeline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The React Native renderer goes through a sequence of work to render React logic
99

1010
The render pipeline can be broken into three general phases:
1111

12-
1. **Render:** React executes product logic which creates a [React Element Trees](architecture-glossary#react-element-tree-and-react-element) in JavaScript. From this tree, the renderer creates a [React Shadow Tree](architecture-glossary#react-shadow-tree-and-react-shadow-node) in C++.
12+
1. **Render:** React executes product logic which creates a [React Element Tree](architecture-glossary#react-element-tree-and-react-element) in JavaScript. From this tree, the renderer creates a [React Shadow Tree](architecture-glossary#react-shadow-tree-and-react-shadow-node) in C++.
1313
2. **Commit**: After a React Shadow Tree is fully created, the renderer triggers a commit. This **promotes** both the React Element Tree and the newly created React Shadow Tree as the “next tree” to be mounted. This also schedules calculation of its layout information.
1414
3. **Mount:** The React Shadow Tree, now with the results of layout calculation, is transformed into a [Host View Tree](architecture-glossary#host-view-tree-and-host-view).
1515

0 commit comments

Comments
 (0)