From 08621e6e8c90627ded0356e0906abd9797f531fa Mon Sep 17 00:00:00 2001 From: Ryuta Kambe Date: Thu, 28 Nov 2024 11:00:37 +0900 Subject: [PATCH] fix(autoware_processing_time_checker): fix typo (#9504) Signed-off-by: veqcc --- .../src/processing_time_checker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/autoware_processing_time_checker/src/processing_time_checker.cpp b/system/autoware_processing_time_checker/src/processing_time_checker.cpp index 262c695d953a6..1e3f04af8fa89 100644 --- a/system/autoware_processing_time_checker/src/processing_time_checker.cpp +++ b/system/autoware_processing_time_checker/src/processing_time_checker.cpp @@ -52,7 +52,7 @@ ProcessingTimeChecker::ProcessingTimeChecker(const rclcpp::NodeOptions & node_op // extract module name from topic name auto tmp_topic_name = processing_time_topic_name; - for (size_t i = 0; i < 4; ++i) { // 4 is enouh for the search depth + for (size_t i = 0; i < 4; ++i) { // 4 is enough for the search depth tmp_topic_name = remove_last_name(tmp_topic_name); const auto module_name_candidate = get_last_name(tmp_topic_name); // clang-format off