From 9b8b29d90ed1e6eb9602c07182e00449308b2daa Mon Sep 17 00:00:00 2001 From: Don Kirkby Date: Sat, 29 Nov 2014 16:29:59 -0800 Subject: [PATCH] typo fix of -> off in pong source code --- examples/tutorials/pong/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/tutorials/pong/main.py b/examples/tutorials/pong/main.py index 392a85e79..752eac893 100644 --- a/examples/tutorials/pong/main.py +++ b/examples/tutorials/pong/main.py @@ -42,7 +42,7 @@ class PongGame(Widget): def update(self, dt): self.ball.move() - #bounce of paddles + #bounce ball off paddles self.player1.bounce_ball(self.ball) self.player2.bounce_ball(self.ball) @@ -50,7 +50,7 @@ class PongGame(Widget): if (self.ball.y < self.y) or (self.ball.top > self.top): self.ball.velocity_y *= -1 - #went of to a side to score point? + #went off a side to score point? if self.ball.x < self.x: self.player2.score += 1 self.serve_ball(vel=(4, 0))