Skip to content

Commit

Permalink
Merge pull request #2 from Nzen/master
Browse files Browse the repository at this point in the history
Replaces many with mainly; divides independent clauses with ;
  • Loading branch information
TStand90 committed Jun 18, 2019
2 parents e71c145 + acd22ef commit 79533d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/tutorials/tcod/part-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ will help you create your very first roguelike game, written in Python\!

This tutorial is largely based off the [one found on
Roguebasin](http://www.roguebasin.com/index.php?title=Complete_Roguelike_Tutorial,_using_python%2Blibtcod).
Many of the design decisions were many to keep this tutorial in lockstep
Many of the design decisions were mainly to keep this tutorial in lockstep
with that one (at least in terms of chapter composition and general
direction). This tutorial would not have been possible without the
guidance of those who wrote that tutorial, along with all the wonderful
Expand Down Expand Up @@ -312,7 +312,7 @@ original one, but here's a critical turning point. We're about to define
a function, called `handle_keys` to take care of keyboard input. We
*could* put this in our `engine.py` file... but should it be there? I
would argue no. The engine (game loop) captures input and should do
something with it, but translating from one to the other is not
something with it; but, translating from one to the other is not
something it needs to know about.

So rather than putting the `handle_keys` function in `engine.py`, let's
Expand Down

0 comments on commit 79533d2

Please sign in to comment.