Skip to content

Commit 1683c7a

Browse files
save file
1 parent c378ade commit 1683c7a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

html-components/html-components.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ <h3>
432432

433433
<div>
434434
<p>
435-
a typical component / module lifecycle might be
435+
a typical component / module lifecycle might have
436436
</p>
437437

438438
<ul>
@@ -441,7 +441,7 @@ <h3>
441441
initmod
442442
</b>
443443
<br>
444-
This is where local depencies are / can be passed to the component
444+
This is where local depencies can be passed to the component
445445
<br>
446446
They fundamentally should not be relying on global state to receive their local depencies, this method is not always
447447
needed
@@ -451,16 +451,16 @@ <h3>
451451
init
452452
</b>
453453
<br>
454-
This is where the component first get executed, its an asynchronous function that allows the component to check
454+
This is the first entry point to the component, it is an asynchronous function that allows the component to check
455455
that it has everything it needs to run, including access to the network to load resources it may need
456456
</li>
457457
<li>
458458
<b>
459459
initdom
460460
</b>
461461
<br>
462-
This is where the component is able to set up its ui / dom, internally build the references it needs to run effeiciently,
463-
it should be treated potentially as asynchronous
462+
This is where the component is able to set up its ui / dom, internally build live references to run effeiciently,
463+
it can be asynchronous.
464464
</li>
465465
</ul>
466466

0 commit comments

Comments
 (0)