From 8c9e5fbd4ce3ac2d43182434c0ed8c646dab78c3 Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Mon, 28 May 2012 23:16:47 +0200 Subject: digital/avr/modules/path/astar: fix typo --- digital/avr/modules/path/astar/astar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/digital/avr/modules/path/astar/astar.c b/digital/avr/modules/path/astar/astar.c index 4b2c816e..4b898a99 100644 --- a/digital/avr/modules/path/astar/astar.c +++ b/digital/avr/modules/path/astar/astar.c @@ -82,7 +82,7 @@ astar (struct astar_node_t *nodes, uint8_t nodes_nb, uint8_t initial, if (nodes[neighbor].score == ASTAR_NODE_SCORE_CLOSED) continue; /* See if our lowest_node is better to arrive to this neighbor - * node (node not considered yet, of new score is better). Note + * node (node not considered yet, or new score is better). Note * that due to the score assigned to unvisited nodes, there is * only one test. */ uint16_t tentative_score = lowest_score + neighbors[i].weight; -- cgit v1.2.3