Skip to content

Commit d1c177f

Browse files
committed
[Kernel] Fix typo.
1 parent 0f1d437 commit d1c177f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
*
4545
* rti_end --> 6.end
4646
*
47-
* These automatically initializaiton, the driver or component initial function must
47+
* These automatically initialization, the driver or component initial function must
4848
* be defined with:
4949
* INIT_BOARD_EXPORT(fn);
5050
* INIT_DEVICE_EXPORT(fn);
@@ -109,7 +109,7 @@ void rt_components_init(void)
109109
int result;
110110
const struct rt_init_desc *desc;
111111

112-
rt_kprintf("do components intialization.\n");
112+
rt_kprintf("do components initialization.\n");
113113
for (desc = &__rt_init_desc_rti_board_end; desc < &__rt_init_desc_rti_end; desc ++)
114114
{
115115
rt_kprintf("initialize %s", desc->fn_name);
@@ -215,7 +215,7 @@ int rtthread_startup(void)
215215
{
216216
rt_hw_interrupt_disable();
217217

218-
/* board level initalization
218+
/* board level initialization
219219
* NOTE: please initialize heap inside board initialization.
220220
*/
221221
rt_hw_board_init();

0 commit comments

Comments
 (0)