Skip to content

Commit ba02d31

Browse files
erxclaujsamr
authored andcommitted
docs: fix typos
1 parent b861fdf commit ba02d31

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

doc-tools/doc-pages/src/pages/PageConceptRendering.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export default function PageConceptRendering() {
7878
The great benefit of using <Bold>explicitly</Bold> this composite
7979
rendering architecture is that the engine and configuration can be put
8080
near the top of your App to factor the cost of instantiating the
81-
engine. This is <Bold>especially usefull</Bold> for apps which will
81+
engine. This is <Bold>especially useful</Bold> for apps which will
8282
render hundreds to thousands of small snippets such as chat apps.
8383
</Admonition>
8484
<Paragraph>

doc-tools/doc-pages/src/pages/PageFAQ.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export default function PageFAQ() {
8585
</Section>
8686
<Section title="Aren't there better renderers for tables?">
8787
<Paragraph>
88-
Sure! The default renderer is very limitted. Check-out{' '}
88+
Sure! The default renderer is very limited. Check-out{' '}
8989
<Hyperlink url="https://github.com/native-html/plugins/tree/master/packages/table-plugin#readme">
9090
@native-html/table-plugin
9191
</Hyperlink>{' '}

doc-tools/doc-pages/src/pages/PageGuideDomTampering.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ export default function PageGuideDomTampering() {
240240
The general recommendation for this three-layers rendering
241241
architecture is that the engine and configuration should be put near
242242
the top of your App to factor the cost of instantiating the engine.
243-
This is especially usefull for apps which will render hundreds to
243+
This is especially usefuld for apps which will render hundreds to
244244
thousands of small snippets such as chat apps.
245245
</ListItem>
246246
</List>

doc-tools/doc-pages/src/pages/PageReinventTheWheel.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export default function PageReinventTheWheel() {
8282
<Paragraph>
8383
To do so, we will need an HTML parsing library which will give us some
8484
sort of proxy DOM representation of the HTML source. In this very
85-
example, we will use <RefHtmlparser2 /> libarary:
85+
example, we will use <RefHtmlparser2 /> library:
8686
</Paragraph>
8787
<SourceDisplay
8888
lang="jsx"
@@ -116,7 +116,7 @@ export default function PageReinventTheWheel() {
116116
</List>
117117
<Paragraph>
118118
Although the <InlineCode>renderTextNode</InlineCode> implementation is
119-
pretty straightforward,
119+
pretty straightforward,{' '}
120120
<InlineCode>renderElement</InlineCode> has some conditional logic to
121121
render the element either in a React Native{' '}
122122
<RefRNSymbol name="Text" /> or <RefRNSymbol name="View" />. This is to
@@ -126,7 +126,7 @@ export default function PageReinventTheWheel() {
126126
</Paragraph>
127127
<Admonition type="note">
128128
We allude to the DOM an DOM nodes while <RefHtmlparser2 /> only
129-
provides a substet of the DOM API for lightweightness!
129+
provides a subset of the DOM API for lightweightness!
130130
</Admonition>
131131
</Chapter>
132132
<Chapter title="Discussion">

0 commit comments

Comments
 (0)