From 5fea9c7201926192e7e8a51d57be4fc33c03707f Mon Sep 17 00:00:00 2001 From: Niklas Fiekas Date: Sat, 9 Mar 2019 22:55:45 +0100 Subject: [PATCH] Tweak docs --- chess/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chess/__init__.py b/chess/__init__.py index c245f734e..fa6cfe0e3 100644 --- a/chess/__init__.py +++ b/chess/__init__.py @@ -1876,7 +1876,7 @@ def can_claim_threefold_repetition(self): def is_repetition(self, count=3): """ - Check if the current position has repeated 3 (or a given number) of + Checks if the current position has repeated 3 (or a given number of) times. Unlike :func:`~chess.Board.can_claim_threefold_repetition()`,