Skip to content

Commit 5f1ab73

Browse files
committed
Fix typo
1 parent cb321ca commit 5f1ab73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Version 1.1.1 (14-08-2022)
22
- Added support for FEN property in PGN parser and "tunerset" command
33
- Replaced crossbeam package with native scoped threads
4-
- Fixed invalid handling of "isready" UCI command during search
4+
- Fixed invalid handling of "isready" UCI command during a search
55
- Fixed engine crash when trying to search invalid position
66
- Fixed incorrect version of toolchain used in GitHub Actions
77

src/utils/tunerset.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ pub fn run(pgn_filename: &str, output_file: &str, min_ply: usize, max_score: i16
184184
parsed_pgns += 1;
185185
if parsed_pgns % 1000 == 0 {
186186
println!(
187-
"Parsed PGNS: {} ({} viable positions, {} ignored positions, {} output positions, {} duplicates)",
187+
"Parsed PGNs: {} ({} viable positions, {} ignored positions, {} output positions, {} duplicates)",
188188
parsed_pgns,
189189
total_viable_positions,
190190
ignored_positions,

0 commit comments

Comments
 (0)