44#include < filesystem>
55#include < fstream>
66#include < iostream>
7- #include < list>
87#include < map>
98#include < mutex>
10- #include < thread>
119#include < unordered_map>
1210
1311#include < cstdlib>
@@ -368,7 +366,7 @@ std::map<pid_t, std::string> start_modules(ManagerConfig& config, MQTTAbstractio
368366 continue ;
369367 }
370368
371- // FIXME (aw): implicitely adding ModuleReadyInfo and setting its ready member
369+ // FIXME (aw): implicitly adding ModuleReadyInfo and setting its ready member
372370 auto module_it = modules_ready.emplace (module_id, ModuleReadyInfo{false , nullptr , nullptr }).first ;
373371
374372 std::vector<std::string> capabilities;
@@ -378,7 +376,7 @@ std::map<pid_t, std::string> start_modules(ManagerConfig& config, MQTTAbstractio
378376 }
379377
380378 if (not capabilities.empty ()) {
381- EVLOG_info << fmt::format (" Module {} wants to aquire the following capabilities: {}" , module_name,
379+ EVLOG_info << fmt::format (" Module {} wants to acquire the following capabilities: {}" , module_name,
382380 fmt::join (capabilities.begin (), capabilities.end (), " " ));
383381 }
384382
@@ -837,7 +835,7 @@ int boot(const po::variables_map& vm) {
837835
838836 const auto module_iter = module_handles.find (pid);
839837 if (module_iter == module_handles.end ()) {
840- throw std::runtime_error (fmt::format (" Unkown child width pid ({}) died." , pid));
838+ throw std::runtime_error (fmt::format (" Unknown child width pid ({}) died." , pid));
841839 }
842840
843841 const auto module_name = module_iter->second ;
@@ -888,7 +886,7 @@ int boot(const po::variables_map& vm) {
888886 }
889887 } else {
890888 // unknown payload
891- EVLOG_error << fmt::format (" Received unkown command via controller ipc:\n {}\n ... ignoring" ,
889+ EVLOG_error << fmt::format (" Received unknown command via controller ipc:\n {}\n ... ignoring" ,
892890 payload.dump (DUMP_INDENT));
893891 }
894892 } else if (msg.status == controller_ipc::MESSAGE_RETURN_STATUS::ERROR) {
0 commit comments