emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-26 fae1ff6: Fix docstrings in pong


From: Eli Zaretskii
Subject: [Emacs-diffs] emacs-26 fae1ff6: Fix docstrings in pong
Date: Sat, 10 Aug 2019 04:54:41 -0400 (EDT)

branch: emacs-26
commit fae1ff69c3fd84f208b7b803adafeb95a36e44e7
Author: Mauro Aranda <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Fix docstrings in pong
    
    * lisp/play/pong.el (pong-move-left pong-move-right): Refer to the
    right bats and directions of movement.  (Bug#36959)
---
 lisp/play/pong.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/play/pong.el b/lisp/play/pong.el
index 555c193..13fe8b8 100644
--- a/lisp/play/pong.el
+++ b/lisp/play/pong.el
@@ -262,7 +262,7 @@
 
 
 (defun pong-move-left ()
-  "Move bat 2 up.
+  "Move bat 1 up.
 This is called left for historical reasons, since in some pong
 implementations you move with left/right paddle."
   (interactive)
@@ -274,7 +274,7 @@ implementations you move with left/right paddle."
 
 
 (defun pong-move-right ()
-  "Move bat 2 up."
+  "Move bat 1 down."
   (interactive)
   (if (< (+ pong-bat-player1 pong-bat-width) (1- pong-height))
       (and



reply via email to

[Prev in Thread] Current Thread [Next in Thread]