Skip to content

Commit 95cec15

Browse files
authored
Update README.md
1 parent 8cd601f commit 95cec15

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ what happens:
209209

210210
<h3> <a href="https://github.com/LukeProducts/AStar-Pathfinding-Cpp/blob/main/AStar.hpp#L454-L480">readmaze</a> - function </h3>
211211

212-
readmaze reads in a maze from the consoles cin stream, <br>
212+
readmaze reads in a maze from the consoles *cin* stream, <br>
213213
the first line must consist of two integers that indicate the height and width of the mazes to be read in. <br>
214214
In the following you can pass in the maze like this: <br>
215215

@@ -228,8 +228,8 @@ In the following you can pass in the maze like this: <br>
228228
229229
```
230230
readmaze converts this directly to the maze format by calling the prepare_maze - function, <br>
231-
which Astar() needs, <br>
232-
so in the one with ones and zeros:
231+
which AStar() needs, <br>
232+
so in the numeric one:
233233
```
234234
1111111111
235235
1000000001
@@ -243,7 +243,7 @@ so in the one with ones and zeros:
243243
1111111111
244244
```
245245

246-
so you can pass in the return value vector\<vector\<int>> directly into the AStar - function:
246+
so you can pass in the return value *vector\<vector\<int>>* directly into the AStar - function:
247247

248248
https://github.com/LukeProducts/AStar-Pathfinding-Cpp/blob/main/examples/readmaze.cpp#L10-L16
249249

0 commit comments

Comments
 (0)