From 581201b54aa8097d37c108ad3d78a12caa3229ce Mon Sep 17 00:00:00 2001 From: Sai Rahul Poruri Date: Fri, 6 Nov 2020 08:42:36 +0000 Subject: [PATCH] FIX : Code formatting in docs modified: docs/source/timer.rst --- docs/source/timer.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/timer.rst b/docs/source/timer.rst index 427af6c34..7f9180b84 100644 --- a/docs/source/timer.rst +++ b/docs/source/timer.rst @@ -103,7 +103,7 @@ seconds for the timer to run (which could potentially mean that the timer never gets performed). For example, a timer which repeats every 0.5 seconds and runs no more than 10 -times and for no longer than 10 seconds can be started like this: +times and for no longer than 10 seconds can be started like this - .. code-block:: python @@ -112,7 +112,7 @@ times and for no longer than 10 seconds can be started like this: :py:class:`~pyface.timer.timer.PyfaceTimer` also provides two convenience class methods for creating and starting a timer in one line. The above example -could instead be written as:: +could instead be written as - .. code-block:: python @@ -121,7 +121,7 @@ could instead be written as:: For the common case of a "single-shot" timer that is only performed once, there is the :py:meth:`~pyface.timer.timer.PyfaceTimer.single_shot` class method that creates a timer that will be called once after the specified -interval:: +interval - .. code-block:: python