Skip to content

Commit 1d8a138

Browse files
authored
Merge pull request #10573 from AGlass0fMilk/patch-1
Change "aplication" to "application"
2 parents 64575fe + 5ced283 commit 1d8a138

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rtos/Mutex.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ void Mutex::constructor(const char *name)
4242
{
4343
osMutexAttr_t attr =
4444
{ 0 };
45-
attr.name = name ? name : "aplication_unnamed_mutex";
45+
attr.name = name ? name : "application_unnamed_mutex";
4646
attr.cb_mem = &_obj_mem;
4747
attr.cb_size = sizeof(_obj_mem);
4848
attr.attr_bits = osMutexRecursive | osMutexPrioInherit | osMutexRobust;

0 commit comments

Comments
 (0)