fix word truncated spell error

This commit is contained in:
gb 2023-12-08 08:49:10 +08:00
parent bcd6475f1b
commit 436dc23db6
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ class log_cls
}
std::string now(g_time_tag + hg_log::current_time() + g_time_tag);
now += truncate ? " trcated.\n" : " started.\n";
now += truncate ? " truncated.\n" : " started.\n";
now.insert(0, log_divider);
fwrite(now.c_str(), 1, now.length(), file_);
}