Skip to content

Commit 67aa18e

Browse files
committed
Fix typo in docs: INFO_BASE -> INFO_BASIC
1 parent 736478a commit 67aa18e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

chess/engine.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@ async def play(self, board: chess.Board, limit: Limit, *, game: object = None, i
11551155
Will automatically inform the engine if the object is not equal
11561156
to the previous game (e.g., ``ucinewgame``, ``new``).
11571157
:param info: Selects which additional information to retrieve from the
1158-
engine. ``INFO_NONE``, ``INFO_BASE`` (basic information that is
1158+
engine. ``INFO_NONE``, ``INFO_BASIC`` (basic information that is
11591159
trivial to obtain), ``INFO_SCORE``, ``INFO_PV``,
11601160
``INFO_REFUTATION``, ``INFO_CURRLINE``, ``INFO_ALL`` or any
11611161
bitwise combination. Some overhead is associated with parsing
@@ -1197,7 +1197,7 @@ async def analyse(self, board: chess.Board, limit: Limit, *, multipv: Optional[i
11971197
Will automatically inform the engine if the object is not equal
11981198
to the previous game (e.g., ``ucinewgame``, ``new``).
11991199
:param info: Selects which information to retrieve from the
1200-
engine. ``INFO_NONE``, ``INFO_BASE`` (basic information that is
1200+
engine. ``INFO_NONE``, ``INFO_BASIC`` (basic information that is
12011201
trivial to obtain), ``INFO_SCORE``, ``INFO_PV``,
12021202
``INFO_REFUTATION``, ``INFO_CURRLINE``, ``INFO_ALL`` or any
12031203
bitwise combination. Some overhead is associated with parsing
@@ -1230,7 +1230,7 @@ async def analysis(self, board: chess.Board, limit: Optional[Limit] = None, *, m
12301230
Will automatically inform the engine if the object is not equal
12311231
to the previous game (e.g., ``ucinewgame``, ``new``).
12321232
:param info: Selects which information to retrieve from the
1233-
engine. ``INFO_NONE``, ``INFO_BASE`` (basic information that is
1233+
engine. ``INFO_NONE``, ``INFO_BASIC`` (basic information that is
12341234
trivial to obtain), ``INFO_SCORE``, ``INFO_PV``,
12351235
``INFO_REFUTATION``, ``INFO_CURRLINE``, ``INFO_ALL`` or any
12361236
bitwise combination. Some overhead is associated with parsing

0 commit comments

Comments
 (0)