Skip to content

Commit bc26441

Browse files
committed
fix a typo
1 parent a58f7c5 commit bc26441

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/librrgraph/src/base/check_rr_graph.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ void check_rr_node(const RRGraphView& rr_graph,
516516
rr_graph_sides = rr_graph.node_sides(rr_node);
517517
std::tie(std::ignore, std::ignore, arch_side_vec) = get_pin_coordinates(type, ptc_num, std::vector<e_side>(TOTAL_2D_SIDES.begin(), TOTAL_2D_SIDES.end()));
518518
// Number of sides in arch_side_vec may be higher than rr_graph sides since there may be duplicates (a pin may have different x/y offset on the same side)
519-
// Because of that, we itearte over arch_side_vec and check if the side is in rr_graph_sides
519+
// Because of that, we iterate over arch_side_vec and check if the side is in rr_graph_sides
520520
for (size_t i = 0; i < arch_side_vec.size(); i++) {
521521
if (std::find(rr_graph_sides.begin(), rr_graph_sides.end(), arch_side_vec[i]) == rr_graph_sides.end()) {
522522
VPR_FATAL_ERROR(VPR_ERROR_ROUTE,

0 commit comments

Comments
 (0)