summaryrefslogtreecommitdiff
path: root/lisp/play
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-01-05 22:21:28 +0000
committerKarl Heuer <kwzh@gnu.org>1996-01-05 22:21:28 +0000
commit35910610258829f2b37991d7e63538f346425796 (patch)
treec7454f9463116353714a6600d1416bd7b37ee187 /lisp/play
parente712992775612c8a4cc2052e4cc66411ccfc4299 (diff)
downloademacs-35910610258829f2b37991d7e63538f346425796.tar.gz
Comment fixes.
Diffstat (limited to 'lisp/play')
-rw-r--r--lisp/play/gomoku.el4
-rw-r--r--lisp/play/mpuz.el2
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/play/gomoku.el b/lisp/play/gomoku.el
index 30677c4ebd8..ef03fb5b700 100644
--- a/lisp/play/gomoku.el
+++ b/lisp/play/gomoku.el
@@ -266,8 +266,8 @@ is non-nil."
;; please send me a note. Thanks.
-;; As we choosed values 0, 1 and 6 to denote empty, X and O squares, the
-;; contents of a qtuple is uniquely determined by the sum of its elements and
+;; As we chose values 0, 1 and 6 to denote empty, X and O squares, the
+;; contents of a qtuple are uniquely determined by the sum of its elements and
;; we just have to set up a translation table.
(defconst gomoku-score-trans-table
diff --git a/lisp/play/mpuz.el b/lisp/play/mpuz.el
index 346567b2f5c..2517b241557 100644
--- a/lisp/play/mpuz.el
+++ b/lisp/play/mpuz.el
@@ -185,7 +185,7 @@ You may abort a game by typing \\<mpuz-mode-map>\\[mpuz-offer-abort]."
D (* A (/ B 10))
E (* A B))
(or (< C 1000) (< D 1000)))) ; forbid leading zeros in C or D
- ;; Individual digits are now put on their respectives squares.
+ ;; Individual digits are now put on their respective squares.
;; [NB: A square is a pair <row,column> of the screen.]
(mpuz-put-digit-on-board A '(2 . 9))
(mpuz-put-digit-on-board (/ A 10) '(2 . 7))