Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-bass committed Aug 13, 2024
1 parent d7ffe6d commit 8b9c067
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ double jointLimitVelocityScalingFactor(const Eigen::VectorXd& velocities,
const moveit::core::JointBoundsVector& joint_bounds, double scaling_override);

/**
* \brief Finds the joint variable indices correspond to joints exceeding allowable position limits.
* \brief Finds the joint variable indices corresponding to joints exceeding allowable position limits.
* @param positions The joint positions.
* @param velocities The current commanded velocities.
* @param joint_bounds The allowable limits for the robot joints.
Expand Down
2 changes: 1 addition & 1 deletion moveit_ros/moveit_servo/src/utils/common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ std::vector<size_t> jointVariablesToHalt(const Eigen::VectorXd& positions, const
bool halt_joint = false;
for (const auto& variable_bound : *joint_bound)
{
// First, loop through all the variables to see if
// First, loop through all the joint variables to see if the entire joint should be halted.
if (variable_bound.position_bounded_)
{
const bool approaching_negative_bound =
Expand Down

0 comments on commit 8b9c067

Please sign in to comment.