Skip to content

Commit

Permalink
Correct the parameter description for AMCL (#3451)
Browse files Browse the repository at this point in the history
Signed-off-by: Trung Kien <letrungkien.k53.hut@gmail.com>
  • Loading branch information
ksvbka authored Mar 7, 2023
1 parent 32024cf commit 252e700
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nav2_amcl/src/amcl_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,11 @@ AmclNode::AmclNode(const rclcpp::NodeOptions & options)

add_parameter(
"max_particles", rclcpp::ParameterValue(2000),
"Minimum allowed number of particles");
"Maximum allowed number of particles");

add_parameter(
"min_particles", rclcpp::ParameterValue(500),
"Maximum allowed number of particles");
"Minimum allowed number of particles");

add_parameter(
"odom_frame_id", rclcpp::ParameterValue(std::string("odom")),
Expand Down

0 comments on commit 252e700

Please sign in to comment.