mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
doc: fix function name typo (#368)
This commit is contained in:
parent
b5a9229563
commit
d9d5d53a75
|
@ -104,10 +104,10 @@ typedef TickType_t EventBits_t;
|
||||||
*
|
*
|
||||||
* Internally, within the FreeRTOS implementation, event groups use a [small]
|
* Internally, within the FreeRTOS implementation, event groups use a [small]
|
||||||
* block of memory, in which the event group's structure is stored. If an event
|
* block of memory, in which the event group's structure is stored. If an event
|
||||||
* groups is created using xEventGropuCreate() then the required memory is
|
* groups is created using xEventGroupCreate() then the required memory is
|
||||||
* automatically dynamically allocated inside the xEventGroupCreate() function.
|
* automatically dynamically allocated inside the xEventGroupCreate() function.
|
||||||
* (see https://www.FreeRTOS.org/a00111.html). If an event group is created
|
* (see https://www.FreeRTOS.org/a00111.html). If an event group is created
|
||||||
* using xEventGropuCreateStatic() then the application writer must instead
|
* using xEventGroupCreateStatic() then the application writer must instead
|
||||||
* provide the memory that will get used by the event group.
|
* provide the memory that will get used by the event group.
|
||||||
* xEventGroupCreateStatic() therefore allows an event group to be created
|
* xEventGroupCreateStatic() therefore allows an event group to be created
|
||||||
* without using any dynamic memory allocation.
|
* without using any dynamic memory allocation.
|
||||||
|
@ -160,10 +160,10 @@ typedef TickType_t EventBits_t;
|
||||||
*
|
*
|
||||||
* Internally, within the FreeRTOS implementation, event groups use a [small]
|
* Internally, within the FreeRTOS implementation, event groups use a [small]
|
||||||
* block of memory, in which the event group's structure is stored. If an event
|
* block of memory, in which the event group's structure is stored. If an event
|
||||||
* groups is created using xEventGropuCreate() then the required memory is
|
* groups is created using xEventGroupCreate() then the required memory is
|
||||||
* automatically dynamically allocated inside the xEventGroupCreate() function.
|
* automatically dynamically allocated inside the xEventGroupCreate() function.
|
||||||
* (see https://www.FreeRTOS.org/a00111.html). If an event group is created
|
* (see https://www.FreeRTOS.org/a00111.html). If an event group is created
|
||||||
* using xEventGropuCreateStatic() then the application writer must instead
|
* using xEventGroupCreateStatic() then the application writer must instead
|
||||||
* provide the memory that will get used by the event group.
|
* provide the memory that will get used by the event group.
|
||||||
* xEventGroupCreateStatic() therefore allows an event group to be created
|
* xEventGroupCreateStatic() therefore allows an event group to be created
|
||||||
* without using any dynamic memory allocation.
|
* without using any dynamic memory allocation.
|
||||||
|
|
Loading…
Reference in a new issue