Change "aplication" to "application"

pull/10573/head
George Beckstein 2019-05-13 17:59:03 -04:00 committed by GitHub
parent 3ea1c56124
commit 5ced28359b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;