Skip to content

Commit

Permalink
fix: Typo in CAN logging message
Browse files Browse the repository at this point in the history
  • Loading branch information
KonradBkd authored Nov 28, 2024
1 parent 2eda6ec commit b86b27c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SilKit/include/silkit/services/can/string_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ std::ostream& operator<<(std::ostream& out, const CanFrameEvent& msg)
std::ostream& operator<<(std::ostream& out, const CanFrameTransmitEvent& status)
{
auto timestamp = std::chrono::duration_cast<std::chrono::duration<double, std::milli>>(status.timestamp);
return out << "Can::CanTtransmitAcknowledge{status=" << status.status << " @" << timestamp.count() << "ms}";
return out << "Can::CanTransmitAcknowledge{status=" << status.status << " @" << timestamp.count() << "ms}";
}

} // namespace Can
Expand Down

0 comments on commit b86b27c

Please sign in to comment.