From 5fc9de80006a240e82ffcab25c4c42c21a9ef8ed Mon Sep 17 00:00:00 2001 From: NicoNovi9 <58565864+NicoNovi9@users.noreply.github.com> Date: Tue, 3 Jan 2023 11:55:56 +0100 Subject: [PATCH] fix the bold error I have corrected the bolding error in the A* search section :-) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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