Skip to content

Commit 97ec84d

Browse files
authored
Update README.md
1 parent fa9ce2b commit 97ec84d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Using these example methods, you should be able to make the graph above like the
7373

7474

7575
## Breadth-first Search Methods
76-
`BFS(start)`: Starting at the `node` `start` traverse the graph breadth-first and return an array of the path that is traversed as. For example, in the graph above, `BFS(A)` should return `[A,B,C,D,E,F]`.
76+
`BFS(start)`: Starting at the `node` `start` traverse the graph breadth-first and return an array of `Strings` that represent the path that is traversed. For example, in the graph above, `BFS(A)` should return `["A", "B", "C", "D", "E", "F"]`.
7777

7878

7979
## Getting Started

0 commit comments

Comments
 (0)