Skip to content

Commit 84d3937

Browse files
suravshresthsjahr
andauthored
fix typos in compute_default_collisions.cpp (#2461)
* fix typos in compute_default_collisions.cpp * Fix typo --------- Co-authored-by: Sebastian Jahr <[email protected]>
1 parent 9249e44 commit 84d3937

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

moveit_setup_assistant/moveit_setup_srdf_plugins/src/compute_default_collisions.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,20 +107,20 @@ static bool setLinkPair(const std::string& linkA, const std::string& linkB, cons
107107
/**
108108
* \brief Build the robot links connection graph and then check for links with no geomotry
109109
* \param link The root link to begin a breadth first search on
110-
* \param link_graph A representation of all bi-direcitonal joint connections between links in robot_description
110+
* \param link_graph A representation of all bi-directional joint connections between links in robot_description
111111
*/
112112
static void computeConnectionGraph(const moveit::core::LinkModel* link, LinkGraph& link_graph);
113113

114114
/**
115115
* \brief Recursively build the adj list of link connections
116116
* \param link The root link to begin a breadth first search on
117-
* \param link_graph A representation of all bi-direcitonal joint connections between links in robot_description
117+
* \param link_graph A representation of all bi-directional joint connections between links in robot_description
118118
*/
119119
static void computeConnectionGraphRec(const moveit::core::LinkModel* link, LinkGraph& link_graph);
120120

121121
/**
122122
* \brief Disable collision checking for adjacent links, or adjacent with no geometry links between them
123-
* \param link_graph A representation of all bi-direcitonal joint connections between links in robot_description
123+
* \param link_graph A representation of all bi-directional joint connections between links in robot_description
124124
* \param scene A reference to the robot in the planning scene
125125
* \param link_pairs List of all unique link pairs and each pair's properties
126126
* \return number of adjacent links found and disabled
@@ -349,7 +349,7 @@ void computeConnectionGraph(const moveit::core::LinkModel* start_link, LinkGraph
349349
// Recursively build adj list of link connections
350350
computeConnectionGraphRec(start_link, link_graph);
351351

352-
// Repeatidly check for links with no geometry and remove them, then re-check until no more removals are detected
352+
// Repeatedly check for links with no geometry and remove them, then re-check until no more removals are detected
353353
bool update = true; // track if a no geometry link was found
354354
while (update)
355355
{

0 commit comments

Comments
 (0)