Skip to content

Commit

Permalink
Change "aplication" to "application"
Browse files Browse the repository at this point in the history
  • Loading branch information
AGlass0fMilk authored May 13, 2019
1 parent 3ea1c56 commit 5ced283
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 5ced283

Please sign in to comment.