Skip to content

Commit 67ac744

Browse files
authored
docs: Moves order in README (#113)
1 parent fb4f453 commit 67ac744

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ Given an algorithm (a string, array of moves, or a single move), returns its inv
157157
```javascript
158158
Cube.inverse("F B' R"); // => "R' B F'"
159159
Cube.inverse([1, 8, 12]); // => [14, 6, 1]
160-
Cube.inverse(8); // => 8
160+
Cube.inverse(8); // => 6
161161
```
162162

163163
See below for numeric moves.
@@ -230,21 +230,21 @@ Internally, cube.js treats moves as numbers.
230230
| U | 0 |
231231
| U2 | 1 |
232232
| U' | 2 |
233-
| F | 3 |
234-
| F2 | 4 |
235-
| F' | 5 |
236-
| L | 6 |
237-
| L2 | 7 |
238-
| L' | 8 |
233+
| R | 3 |
234+
| R2 | 4 |
235+
| R' | 5 |
236+
| F | 6 |
237+
| F2 | 7 |
238+
| F' | 8 |
239239
| D | 9 |
240240
| D2 | 10 |
241241
| D' | 11 |
242-
| B | 12 |
243-
| B2 | 13 |
244-
| B' | 14 |
245-
| R | 15 |
246-
| R2 | 16 |
247-
| R' | 17 |
242+
| L | 12 |
243+
| L2 | 13 |
244+
| L' | 14 |
245+
| B | 15 |
246+
| B2 | 16 |
247+
| B' | 17 |
248248

249249
### `solve.js`
250250

0 commit comments

Comments
 (0)