@@ -107,20 +107,20 @@ static bool setLinkPair(const std::string& linkA, const std::string& linkB, cons
107
107
/* *
108
108
* \brief Build the robot links connection graph and then check for links with no geomotry
109
109
* \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
111
111
*/
112
112
static void computeConnectionGraph (const moveit::core::LinkModel* link, LinkGraph& link_graph);
113
113
114
114
/* *
115
115
* \brief Recursively build the adj list of link connections
116
116
* \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
118
118
*/
119
119
static void computeConnectionGraphRec (const moveit::core::LinkModel* link, LinkGraph& link_graph);
120
120
121
121
/* *
122
122
* \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
124
124
* \param scene A reference to the robot in the planning scene
125
125
* \param link_pairs List of all unique link pairs and each pair's properties
126
126
* \return number of adjacent links found and disabled
@@ -349,7 +349,7 @@ void computeConnectionGraph(const moveit::core::LinkModel* start_link, LinkGraph
349
349
// Recursively build adj list of link connections
350
350
computeConnectionGraphRec (start_link, link_graph);
351
351
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
353
353
bool update = true ; // track if a no geometry link was found
354
354
while (update)
355
355
{
0 commit comments