Skip to content

Commit 4e20460

Browse files
author
Gabriel Derrien
authored
Update README.md
1 parent 43f42de commit 4e20460

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Firstly, see how to [load a maze](#load-a-maze) from a .txt file or [create one]
2626

2727
Next, refer to "[Use a solver](#use-a-solver)" to begin solving when your Maze is all set.
2828

29-
Like any solver, you can also [set your own cardinal solving order](#changing-the-solving-cardinal-order) as the default one is North-East-South-West.
29+
Like any solver, you can also [set your own shift order](#changing-the-shift-order). This program use cardinals as reference and the default one is North-East-South-West.
3030

3131

3232

@@ -125,9 +125,9 @@ Set to `true` to use Manhattan heuristic. Euclidean heuristic otherwhise.
125125

126126

127127

128-
Changing the solving cardinal order
128+
Changing the shift order
129129
------
130-
To change the order the solvers will use to test squares, use
130+
To change the shift order the solvers will use to test squares, use
131131
```Java
132132
char[] order = {'W', 'E', 'N', 'S'};
133133
myMaze.setOrder(order);

0 commit comments

Comments
 (0)