Fix some typos

This commit is contained in:
gabime
2024-01-13 18:53:19 +02:00
parent c539f36551
commit ce3922cff1
7 changed files with 8 additions and 9 deletions

View File

@@ -12,7 +12,7 @@ spdlog::level level_from_str(const std::string &name) noexcept {
auto it = std::find(std::begin(level_string_views), std::end(level_string_views), name);
if (it != std::end(level_string_views)) return static_cast<level>(std::distance(std::begin(level_string_views), it));
// check also for "warn" and "err" before giving up..
// check also for "warn" and "err" before giving up
if (name == "warn") {
return spdlog::level::warn;
}