Skip to content

Commit

Permalink
Fix typo in docs: INFO_BASE -> INFO_BASIC
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Jul 7, 2023
1 parent 736478a commit 67aa18e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chess/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -1155,7 +1155,7 @@ async def play(self, board: chess.Board, limit: Limit, *, game: object = None, i
Will automatically inform the engine if the object is not equal
to the previous game (e.g., ``ucinewgame``, ``new``).
:param info: Selects which additional information to retrieve from the
engine. ``INFO_NONE``, ``INFO_BASE`` (basic information that is
engine. ``INFO_NONE``, ``INFO_BASIC`` (basic information that is
trivial to obtain), ``INFO_SCORE``, ``INFO_PV``,
``INFO_REFUTATION``, ``INFO_CURRLINE``, ``INFO_ALL`` or any
bitwise combination. Some overhead is associated with parsing
Expand Down Expand Up @@ -1197,7 +1197,7 @@ async def analyse(self, board: chess.Board, limit: Limit, *, multipv: Optional[i
Will automatically inform the engine if the object is not equal
to the previous game (e.g., ``ucinewgame``, ``new``).
:param info: Selects which information to retrieve from the
engine. ``INFO_NONE``, ``INFO_BASE`` (basic information that is
engine. ``INFO_NONE``, ``INFO_BASIC`` (basic information that is
trivial to obtain), ``INFO_SCORE``, ``INFO_PV``,
``INFO_REFUTATION``, ``INFO_CURRLINE``, ``INFO_ALL`` or any
bitwise combination. Some overhead is associated with parsing
Expand Down Expand Up @@ -1230,7 +1230,7 @@ async def analysis(self, board: chess.Board, limit: Optional[Limit] = None, *, m
Will automatically inform the engine if the object is not equal
to the previous game (e.g., ``ucinewgame``, ``new``).
:param info: Selects which information to retrieve from the
engine. ``INFO_NONE``, ``INFO_BASE`` (basic information that is
engine. ``INFO_NONE``, ``INFO_BASIC`` (basic information that is
trivial to obtain), ``INFO_SCORE``, ``INFO_PV``,
``INFO_REFUTATION``, ``INFO_CURRLINE``, ``INFO_ALL`` or any
bitwise combination. Some overhead is associated with parsing
Expand Down

0 comments on commit 67aa18e

Please sign in to comment.