diff --git a/README.md b/README.md index e0bef28..51883d2 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ This application supports the following algorithms: **Dijkstra's Algorithm** (weighted): the father of pathfinding algorithms; guarantees the shortest path -**A* Search** (weighted): arguably the best pathfinding algorithm; uses heuristics to guarantee the shortest path much faster than Dijkstra's Algorithm +**A*** **Search** (weighted): arguably the best pathfinding algorithm; uses heuristics to guarantee the shortest path much faster than Dijkstra's Algorithm **Greedy Best-first Search** (weighted): a faster, more heuristic-heavy version of A*; does not guarantee the shortest path