From 25a72ba0768f8e01b995e55c26049e08111ed7d5 Mon Sep 17 00:00:00 2001 From: gbtami Date: Wed, 20 Nov 2024 14:07:15 +0100 Subject: [PATCH] Fix comment --- src/position.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/position.cpp b/src/position.cpp index ce0d54302..546c1e553 100644 --- a/src/position.cpp +++ b/src/position.cpp @@ -826,8 +826,8 @@ string Position::fen(bool sfen, bool showPromoted, int countStarted, std::string /// Position::fog_fen() returns a Fog of War (dark chess) FEN representation -/// of the position. Squares where current player can't move (from or to) are -/// filled with NO_PIECE (wall squares) +/// of the position. Squares where current player can't move to are filled with +/// NO_PIECE (wall squares) string Position::fog_fen(bool sfen, bool showPromoted, int countStarted, std::string holdings) { Color us = sideToMove;