Fix backticks typo in pong tutorial (#8034)

This commit is contained in:
Tom Dudley 2022-10-16 08:19:30 +01:00 committed by GitHub
parent 90400b656e
commit 0455d2008b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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::