From 0455d2008b7d012c87e3283de8c31da79f140b93 Mon Sep 17 00:00:00 2001 From: Tom Dudley Date: Sun, 16 Oct 2022 08:19:30 +0100 Subject: [PATCH] Fix backticks typo in pong tutorial (#8034) --- doc/sources/tutorials/pong.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/sources/tutorials/pong.rst b/doc/sources/tutorials/pong.rst index 896e21e54..eedeacc9e 100644 --- a/doc/sources/tutorials/pong.rst +++ b/doc/sources/tutorials/pong.rst @@ -398,7 +398,7 @@ occurs because Kivy :mod:`~kivy.properties` automatically bind to any references in their corresponding kv files. When the ball escapes out of the sides, we'll update the score and serve the ball again by changing the ``update`` method in the ``PongGame`` class. The ``PongPaddle`` -class also implements a ``bounce_ball method``, so that the ball bounces +class also implements a ``bounce_ball`` method, so that the ball bounces differently based on where it hits the racket. Here is the code for the `PongPaddle` class::