Skip to content

Commit def5cad

Browse files
committed
fix spelling mistake
Signed-off-by: Go Sakayori <go.sakayori@tier4.jp>
1 parent e3c1699 commit def5cad

File tree

1 file changed

+2
-3
lines changed
  • planning/autoware_velocity_smoother/src

1 file changed

+2
-3
lines changed

planning/autoware_velocity_smoother/src/node.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ VelocitySmootherNode::VelocitySmootherNode(const rclcpp::NodeOptions & node_opti
6868
"~/input/trajectory", 1, std::bind(&VelocitySmootherNode::onCurrentTrajectory, this, _1));
6969

7070
srv_force_acceleration_ = create_service<SetBool>(
71-
"~/adjust_common_param",
72-
std::bind(&VelocitySmootherNode::onForceAcceleration, this, _1, _2));
71+
"~/adjust_common_param", std::bind(&VelocitySmootherNode::onForceAcceleration, this, _1, _2));
7372
srv_slow_driving_ = create_service<SetBool>(
7473
"~/slow_driving", std::bind(&VelocitySmootherNode::onSlowDriving, this, _1, _2));
7574
force_acceleration_mode_ = false;
@@ -1201,7 +1200,7 @@ void VelocitySmootherNode::onSlowDriving(
12011200
if (request->data && force_slow_driving_mode_ == ForceSlowDrivingType::DEACTIVATED) {
12021201
force_slow_driving_mode_ = ForceSlowDrivingType::READY;
12031202

1204-
message = "Activated force slow drving";
1203+
message = "Activated force slow driving";
12051204
} else if (!request->data) {
12061205
force_slow_driving_mode_ = ForceSlowDrivingType::DEACTIVATED;
12071206
message = "Deactivated force slow driving";

0 commit comments

Comments
 (0)