Skip to content

Commit a246943

Browse files
committed
doc: fix function name typo
1 parent b5a9229 commit a246943

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/event_groups.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ typedef TickType_t EventBits_t;
104104
*
105105
* Internally, within the FreeRTOS implementation, event groups use a [small]
106106
* block of memory, in which the event group's structure is stored. If an event
107-
* groups is created using xEventGropuCreate() then the required memory is
107+
* groups is created using xEventGroupCreate() then the required memory is
108108
* automatically dynamically allocated inside the xEventGroupCreate() function.
109109
* (see https://www.FreeRTOS.org/a00111.html). If an event group is created
110-
* using xEventGropuCreateStatic() then the application writer must instead
110+
* using xEventGroupCreateStatic() then the application writer must instead
111111
* provide the memory that will get used by the event group.
112112
* xEventGroupCreateStatic() therefore allows an event group to be created
113113
* without using any dynamic memory allocation.
@@ -160,10 +160,10 @@ typedef TickType_t EventBits_t;
160160
*
161161
* Internally, within the FreeRTOS implementation, event groups use a [small]
162162
* block of memory, in which the event group's structure is stored. If an event
163-
* groups is created using xEventGropuCreate() then the required memory is
163+
* groups is created using xEventGroupCreate() then the required memory is
164164
* automatically dynamically allocated inside the xEventGroupCreate() function.
165165
* (see https://www.FreeRTOS.org/a00111.html). If an event group is created
166-
* using xEventGropuCreateStatic() then the application writer must instead
166+
* using xEventGroupCreateStatic() then the application writer must instead
167167
* provide the memory that will get used by the event group.
168168
* xEventGroupCreateStatic() therefore allows an event group to be created
169169
* without using any dynamic memory allocation.

0 commit comments

Comments
 (0)