Skip to content

Commit 0c90293

Browse files
authored
chore(behavior_path_planner): fix pull_over typo (#1771)
1 parent d61f622 commit 0c90293

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

planning/behavior_path_planner/include/behavior_path_planner/scene_module/pull_over/pull_over_module.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ class PullOverModule : public SceneModuleInterface
194194
std::pair<bool, bool> getSafePath(ShiftParkingPath & safe_path) const;
195195
Pose getRefinedGoal() const;
196196
Pose getParkingStartPose() const;
197-
ParallelParkingParameters getGeometricPullOutParameters() const;
197+
ParallelParkingParameters getGeometricPullOverParameters() const;
198198
bool isLongEnoughToParkingStart(
199199
const PathWithLaneId & path, const Pose & parking_start_pose) const;
200200
bool isLongEnough(

planning/behavior_path_planner/src/scene_module/pull_over/pull_over_module.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ BehaviorModuleOutput PullOverModule::run()
8585
return plan();
8686
}
8787

88-
ParallelParkingParameters PullOverModule::getGeometricPullOutParameters() const
88+
ParallelParkingParameters PullOverModule::getGeometricPullOverParameters() const
8989
{
9090
ParallelParkingParameters params;
9191

@@ -130,7 +130,7 @@ void PullOverModule::onEntry()
130130
last_received_time_.get() == nullptr ||
131131
*last_received_time_ != planner_data_->route_handler->getRouteHeader().stamp) {
132132
// Initialize parallel parking planner status
133-
parallel_parking_parameters_ = getGeometricPullOutParameters();
133+
parallel_parking_parameters_ = getGeometricPullOverParameters();
134134

135135
resetStatus();
136136
}

0 commit comments

Comments
 (0)