Skip to content

Commit 3066a88

Browse files
committed
nudge comment left
1 parent b6d7efa commit 3066a88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

posts/solving-queuedle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Luckily, this was a one-line change:
146146
for (const move of getValidMoves(node.state)) {
147147
const nextState = handleSlide(node.state, move.direction, move.index);
148148

149-
// Consider remaining moves!
149+
// Consider remaining moves!
150150
const score = evaluateState(nextState) + (15 - node.moves.length);
151151
```
152152

0 commit comments

Comments
 (0)