summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2008-08-10 12:23:26 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2008-08-10 12:23:26 +0000
commitf2479cbec1944be49b5f4dfc2d17f15b1a17b970 (patch)
tree5415c21d734f47857eebaef5820e75d5ba83ce8a
parentfb1940b6560a128970ab6c941cb4832c6b63ee07 (diff)
'coordiates' -> 'coordinates' from Dawe via tech@.
-rw-r--r--games/tetris/tetris.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/games/tetris/tetris.h b/games/tetris/tetris.h
index bc6646cf9b9..4de192d8e5c 100644
--- a/games/tetris/tetris.h
+++ b/games/tetris/tetris.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tetris.h,v 1.9 2003/06/03 03:01:41 millert Exp $ */
+/* $OpenBSD: tetris.h,v 1.10 2008/08/10 12:23:25 krw Exp $ */
/* $NetBSD: tetris.h,v 1.2 1995/04/22 07:42:48 cgd Exp $ */
/*-
@@ -75,7 +75,7 @@ extern int Rows, Cols; /* current screen size */
/*
* Translations from board coordinates to display coordinates.
- * As with board coordinates, display coordiates are zero origin.
+ * As with board coordinates, display coordinates are zero origin.
*/
#define RTOD(x) ((x) - 1)
#define CTOD(x) ((x) * 2 + (((Cols - 2 * B_COLS) >> 1) - 1))