Fixed typos

This commit is contained in:
AlexandreRouma
2021-09-20 19:59:35 +02:00
parent 9ee0951874
commit 049fc77ff6
21 changed files with 37 additions and 383 deletions

View File

@ -102,7 +102,7 @@ void ModuleManager::createInstance(std::string name, std::string module) {
void ModuleManager::deleteInstance(std::string name) {
if (instances.find(name) == instances.end()) {
spdlog::error("Tried to remove non-existant instance '{0}'", name);
spdlog::error("Tried to remove non-existent instance '{0}'", name);
return;
}
onInstanceDelete.emit(name);