Skip to content

Commit

Permalink
Spellcheck fix
Browse files Browse the repository at this point in the history
Signed-off-by: Paweł Lech <[email protected]>
  • Loading branch information
pawellech1 committed Feb 21, 2024
1 parent b9ca1af commit 22c608f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ class API
const geometry_msgs::msg::PoseStamped goal_pose)
{
if (name != "ego") {
throw std::runtime_error("Respawning entities other than EGO is not supported");
throw std::runtime_error("Respawn of any entities other than EGO is not supported");
}

simulation_api_schema::DespawnEntityRequest req;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class MiscObjectEntity : public EntityBase

auto getVehicleParameters() const -> const traffic_simulator_msgs::msg::VehicleParameters override
{
THROW_SEMANTIC_ERROR("getVehicleParametrs function cannot be used in MiscObjectEntity");
THROW_SEMANTIC_ERROR("getVehicleParameters function cannot be used in MiscObjectEntity");
}

void setBehaviorParameter(const traffic_simulator_msgs::msg::BehaviorParameter &) override;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class PedestrianEntity : public EntityBase

auto getVehicleParameters() const -> const traffic_simulator_msgs::msg::VehicleParameters override
{
THROW_SEMANTIC_ERROR("getVehicleParametrs function cannot be used in PedestrianEntity");
THROW_SEMANTIC_ERROR("getVehicleParameters function cannot be used in PedestrianEntity");
}

void setAccelerationLimit(double acceleration) override;
Expand Down

0 comments on commit 22c608f

Please sign in to comment.