summaryrefslogtreecommitdiffstats
path: root/monop
diff options
context:
space:
mode:
Diffstat (limited to 'monop')
-rw-r--r--monop/monop.def4
-rw-r--r--monop/monop.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/monop/monop.def b/monop/monop.def
index b5951b8a..579175e3 100644
--- a/monop/monop.def
+++ b/monop/monop.def
@@ -1,4 +1,4 @@
-/* $NetBSD: monop.def,v 1.9 2004/01/27 20:30:30 jsm Exp $ */
+/* $NetBSD: monop.def,v 1.10 2008/02/19 09:25:21 dholland Exp $ */
/*-
* Copyright (c) 1980, 1993
@@ -101,7 +101,7 @@ DECK deck[2]; /* Chance and Community Chest */
PLAY *play, /* player structure array ("calloc"ed) */
*cur_p; /* pointer to current player's struct */
-RR_S rr[N_RR]; /* raildroad descriptions */
+RR_S rr[N_RR]; /* railroad descriptions */
UTIL_S util[2]; /* utility descriptions */
diff --git a/monop/monop.h b/monop/monop.h
index 0dd92574..56ca6c49 100644
--- a/monop/monop.h
+++ b/monop/monop.h
@@ -1,4 +1,4 @@
-/* $NetBSD: monop.h,v 1.12 2004/01/27 20:30:30 jsm Exp $ */
+/* $NetBSD: monop.h,v 1.13 2008/02/19 09:25:21 dholland Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -124,7 +124,7 @@ struct plr_st { /* player description structure */
short loc; /* location on board */
short in_jail; /* count of turns in jail */
int money; /* amount of money */
- OWN *own_list; /* start of propery list */
+ OWN *own_list; /* start of property list */
};
typedef struct plr_st PLAY;