summaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorTodd T. Fries <todd@cvs.openbsd.org>2001-01-04 20:39:50 +0000
committerTodd T. Fries <todd@cvs.openbsd.org>2001-01-04 20:39:50 +0000
commitba4fb46b477f5a3962a63b46f1d270a58f442c34 (patch)
treeb98c17c007002e443766a5083fc1db5bf4ebaade /games
parent9842409a141ae8e28e960ac251ef1b2c4e226b89 (diff)
grammar
Diffstat (limited to 'games')
-rw-r--r--games/hack/READ_ME2
-rw-r--r--games/hack/config.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/games/hack/READ_ME b/games/hack/READ_ME
index 0f3aa89bafc..23847f0b87b 100644
--- a/games/hack/READ_ME
+++ b/games/hack/READ_ME
@@ -51,7 +51,7 @@ How to install hack:
and define BSD if you are on a BSDtype system,
define STUPID if your C-compiler chokes on complicated expressions.
Make sure schar and uchar represent signed and unsigned types.
- If your C compiler doesnt allow initialization of bit fields
+ If your C compiler doesn't allow initialization of bit fields
change Bitfield. When config.h looks reasonable, say 'make'.
(Perhaps you have to change TERMLIB in the makefile.)
1. If it didnt exist already, introduce a loginname `play' .
diff --git a/games/hack/config.h b/games/hack/config.h
index 47decc61d2c..33f55554419 100644
--- a/games/hack/config.h
+++ b/games/hack/config.h
@@ -6,7 +6,7 @@
#include "pathnames.h"
-#ifndef CONFIG /* make sure the compiler doesnt see the typedefs twice */
+#ifndef CONFIG /* make sure the compiler doesn't see the typedefs twice */
#define CONFIG
#define UNIX /* delete if no fork(), exec() available */
@@ -132,7 +132,7 @@ typedef xchar boolean; /* 0 or 1 */
/*
* Declaration of bitfields in various structs; if your C compiler
- * doesnt handle bitfields well, e.g., if it is unable to initialize
+ * doesn't handle bitfields well, e.g., if it is unable to initialize
* structs containing bitfields, then you might use
* #define Bitfield(x,n) uchar x
* since the bitfields used never have more than 7 bits. (Most have 1 bit.)