Skip to content

Commit

Permalink
Merge pull request #10573 from AGlass0fMilk/patch-1
Browse files Browse the repository at this point in the history
Change "aplication" to "application"
  • Loading branch information
0xc0170 authored May 15, 2019
2 parents 64575fe + 5ced283 commit 1d8a138
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtos/Mutex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ void Mutex::constructor(const char *name)
{
osMutexAttr_t attr =
{ 0 };
attr.name = name ? name : "aplication_unnamed_mutex";
attr.name = name ? name : "application_unnamed_mutex";
attr.cb_mem = &_obj_mem;
attr.cb_size = sizeof(_obj_mem);
attr.attr_bits = osMutexRecursive | osMutexPrioInherit | osMutexRobust;
Expand Down

0 comments on commit 1d8a138

Please sign in to comment.