From 41948cbb65acbf901c59276740186c5a00772f85 Mon Sep 17 00:00:00 2001 From: Daniel Black Date: Mon, 29 Jun 2020 12:51:23 -0400 Subject: [PATCH] Corrected mispelling of "breadth-first" in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e0bef28..3ffbc0a 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ This application supports the following algorithms: **Bidirectional Swarm Algorithm** (weighted): Swarm from both sides; does not guarantee the shortest path -**Breath-first Search** (unweighted): a great algorithm; guarantees the shortest path +**Breadth-first Search** (unweighted): a great algorithm; guarantees the shortest path **Depth-first Search** (unweighted): a very bad algorithm for pathfinding; does not guarantee the shortest path