Skip to content

Commit

Permalink
docs: fix simple typo, resoultion -> resolution
Browse files Browse the repository at this point in the history
There is a small typo in chapter08/maze.py.

Should read `resolution` rather than `resoultion`.
  • Loading branch information
timgates42 committed Dec 22, 2020
1 parent 8fe5761 commit db78305
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chapter08/maze.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def __init__(self):
self.resolution = 1

# extend a state to a higher resolution maze
# @state: state in lower resoultion maze
# @state: state in lower resolution maze
# @factor: extension factor, one state will become factor^2 states after extension
def extend_state(self, state, factor):
new_state = [state[0] * factor, state[1] * factor]
Expand Down

0 comments on commit db78305

Please sign in to comment.