Skip to content

Commit

Permalink
Easier link maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
programarivm committed Jan 8, 2025
1 parent 4e64297 commit 87c6e78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/chess-tutor.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

✨ Chess beginners often think they can checkmate the opponent's king quickly. However, there are so many different things to consider in order to understand a position.

[Chess\Tutor\FenEvaluation](https://github.com/chesslablab/php-chess/blob/main/tests/unit/Tutor/FenEvaluationTest.php) helps you improve your chess thinking process by evaluating a FEN position in terms of [chess concepts](https://php-chess.chesslablab.org/heuristics/) like in the example below.
[Chess\Tutor\FenEvaluation](https://github.com/chesslablab/php-chess/blob/main/tests/unit/Tutor/FenEvaluationTest.php) helps you improve your chess thinking process by evaluating a FEN position in terms of chess concepts like the example below.

```php
use Chess\FenToBoardFactory;
Expand Down
2 changes: 1 addition & 1 deletion docs/play-chess.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ echo $board->movetext();
1.Rb1
```

The FEN is converted to a chess board object as described in the [Format Converters](https://php-chess.chesslablab.org/format-converters/#fen-to-board) section. Then Stockfish's depth limit is set to `12` and the skill level to `20`.
The FEN is converted to a chess board object. Then Stockfish's depth limit is set to `12` and the skill level to `20`.

The same thing goes to starting a game from a particular SAN movetext. As you can see in the example below, [Chess\Play\SanPlay](https://github.com/chesslablab/php-chess/blob/main/tests/unit/Play/SanPlayTest.php) is used for this purpose.

Expand Down

0 comments on commit 87c6e78

Please sign in to comment.