fix typo in comment

This commit is contained in:
gabime 2023-10-01 18:11:02 +03:00
parent 57868277db
commit bd00a0081a

View File

@ -37,7 +37,7 @@ const std::string &logger::name() const { return name_; }
void logger::set_formatter(std::unique_ptr<formatter> f) {
for (auto it = sinks_.begin(); it != sinks_.end(); ++it) {
if (std::next(it) == sinks_.end()) {
// last element - we can be move it.
// last element - we can move it.
(*it)->set_formatter(std::move(f));
break; // to prevent clang-tidy warning
} else {