diff --git a/src/logger.cpp b/src/logger.cpp index 3f540e25..0b66ce18 100644 --- a/src/logger.cpp +++ b/src/logger.cpp @@ -37,7 +37,7 @@ const std::string &logger::name() const { return name_; } void logger::set_formatter(std::unique_ptr 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 {