Skip to content

Commit f4da794

Browse files
fix some typos (similar to those from Python 2 folder)
1 parent 55cdce7 commit f4da794

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

python3/contemplate_koans.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Python Koans is a port of Ruby Koans originally written by Jim Weirich
88
# and Joe O'brien of Edgecase. There are some differences and tweaks specific
99
# to the Python language, but a great deal of it has been copied wholesale.
10-
# So thank guys!
10+
# So thanks guys!
1111
#
1212

1313
import unittest

python3/runner/sensei.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,12 +167,12 @@ def report_progress(self):
167167
"reaching enlightenment.".format(koans_remaining, lessons_remaining)
168168
return sent1+sent2
169169

170-
# Hat's tip to Tim Peters for the zen statements from The Zen
171-
# of Python (http://www.python.org/dev/peps/pep-0020/)
170+
# Hat's tip to Tim Peters for the zen statements from The 'Zen
171+
# of Python' (http://www.python.org/dev/peps/pep-0020/)
172172
#
173173
# Also a hat's tip to Ara T. Howard for the zen statements from his
174174
# metakoans Ruby Quiz (http://rubyquiz.com/quiz67.html) and
175-
# Edgecase's later permatation in the Ruby Koans
175+
# Edgecase's later permutation in the Ruby Koans
176176
def say_something_zenlike(self):
177177
if self.failures:
178178
turn = self.pass_count % 37
@@ -230,7 +230,7 @@ def say_something_zenlike(self):
230230
.format(Fore.CYAN)
231231

232232
# Hopefully this will never ever happen!
233-
return "The temple in collapsing! Run!!!"
233+
return "The temple is collapsing! Run!!!"
234234

235235
def total_lessons(self):
236236
all_lessons = self.filter_all_lessons()

0 commit comments

Comments
 (0)