Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion notebooks/rocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def __init__(self, x=0, y=0):
self.y = y

def move_rocket(self, x_increment=0, y_increment=1):
# Move the rocket according to the paremeters given.
# Move the rocket according to the parameters given.
# Default behavior is to move the rocket up one unit.
self.x += x_increment
self.y += y_increment
Expand Down
2 changes: 1 addition & 1 deletion scripts/highlight_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# The script assumes all html files are not nested, in a directory called
# 'notebooks'.

# You will need to specificy path_to_notebooks.
# You will need to specify path_to_notebooks.
# I'm happy to hear feedback, and accept improvements:
# https://github.com/ehmatthes/intro_programming
# ehmatthes@gmail.com, @ehmatthes
Expand Down