Skip to content

Commit

Permalink
Fix typo in argument name
Browse files Browse the repository at this point in the history
  • Loading branch information
ll-nick committed Dec 3, 2024
1 parent 02f827e commit 9b0c0ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demo/include/demo/cost_estimator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ struct CostEstimator : public arbitration_graphs::CostEstimator<Command> {
int pathEndNeighborhoodRadius{3};
};

explicit CostEstimator(EnvironmentModel::Ptr environmentModel, const Parameters& paramters)
: environmentModel_{std::move(environmentModel)}, parameters_{paramters} {
explicit CostEstimator(EnvironmentModel::Ptr environmentModel, const Parameters& parameters)
: environmentModel_{std::move(environmentModel)}, parameters_{parameters} {
}

/**
Expand Down

0 comments on commit 9b0c0ef

Please sign in to comment.