Fix a couple of typos

Signed-off-by: Horst H. von Brand <vonbrand@inf.utfsm.cl>
This commit is contained in:
Horst H. von Brand 2018-11-11 22:44:33 -03:00
parent 25765a1b0f
commit bc84afd2e5
5 changed files with 5 additions and 5 deletions

View file

@ -6,7 +6,7 @@ you can go there for tarball downloads and other resources.
This code is a forward-port of the Crowther/Woods Adventure 2.5 from This code is a forward-port of the Crowther/Woods Adventure 2.5 from
1995, last version in the main line of Colossal Cave Adventure 1995, last version in the main line of Colossal Cave Adventure
development written by the original authors. The authors have given development written by the original authors. The authors have given
permission and encouragement for this releasel it obsolesces all permission and encouragement for this release it obsolesces all
the 350-point versions and previous 2.x (430-point) ports. the 350-point versions and previous 2.x (430-point) ports.
The file history.adoc contains a more detailed history of this game The file history.adoc contains a more detailed history of this game

View file

@ -62,7 +62,7 @@
# #
# arbitrary_messages: These are arguments to rspeak(). Some spans of # arbitrary_messages: These are arguments to rspeak(). Some spans of
# these messages need to be kept adjacent and ordered (for now), # these messages need to be kept adjacent and ordered (for now),
# though there are no depenencies on actual numbers left. To see # though there are no dependencies on actual numbers left. To see
# which, grep for rspeak() calls containing expressions with # which, grep for rspeak() calls containing expressions with
# arithmetic. Eventually, these will be pulled out into more # arithmetic. Eventually, these will be pulled out into more
# appropriate data structures. Then ordering can be dropped. # appropriate data structures. Then ordering can be dropped.

View file

@ -2,7 +2,7 @@
by Eric S. Raymond by Eric S. Raymond
Adventure is the fons et origo of all later dungeon-crawling computer Adventure is the fons et origo of all later dungeon-crawling computer
games, the grandaddy of interactive fiction, and one of the hallowed games, the granddaddy of interactive fiction, and one of the hallowed
artifacts of hacker folklore. artifacts of hacker folklore.
== Origin and history == == Origin and history ==

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# This is the open-adventure dungeon generator. It consumes a YAML description of # This is the open-adventure dungeon generator. It consumes a YAML description of
# the dungeon and outputs a dungeon.h and dungeon.c pair of C code files. # the dungeon and outputs a dungeon.h and dungeon.c pair of C code files.

View file

@ -177,6 +177,6 @@ We have made exactly one minor architectural change. In addition to the
old code's per-object state-description messages, we now have a per-object old code's per-object state-description messages, we now have a per-object
message series for state *changes*. This makes it possible to pull a fair message series for state *changes*. This makes it possible to pull a fair
amount of text out of the arbitrary-messages list and associate those amount of text out of the arbitrary-messages list and associate those
mesages with the objects that conceptually own them. messages with the objects that conceptually own them.
// end // end