Skip to content

Commit

Permalink
fix(messages): Improve the readability of the description of the leve…
Browse files Browse the repository at this point in the history
…ls (#1474)

Added ',' after 'Blockly' in the level description

fixes issue #1198
  • Loading branch information
Ricardo-MT authored Aug 30, 2023
1 parent d5146ae commit f40daa5
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions game/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -1718,7 +1718,7 @@ def title_level80():
def description_level80():
message = youtube_link("https://www.youtube-nocookie.com/embed/5atj2caRjyA", 0)
message += (
"As you create your program using Blockly see what it looks like in the Python "
"As you create your program using Blockly, see what it looks like in the Python "
"programming language. Can you tell which Python statement matches which block?"
)
return build_description(
Expand All @@ -1739,7 +1739,7 @@ def title_level81():

def description_level81():
message = (
"As you create your program using Blockly see what it looks like in the Python "
"As you create your program using Blockly, see what it looks like in the Python "
"programming language. Can you tell which Python statement matches which block?"
)
return build_description(title_level81(), message)
Expand All @@ -1756,7 +1756,7 @@ def title_level82():

def description_level82():
message = (
"As you create your program using Blockly see what it looks like in the Python "
"As you create your program using Blockly, see what it looks like in the Python "
"programming language. Can you tell which Python statement matches which block?"
)
return build_description(title_level82(), message)
Expand All @@ -1777,7 +1777,7 @@ def title_level83():

def description_level83():
message = (
"As you create your program using Blockly see what it looks like in the Python "
"As you create your program using Blockly, see what it looks like in the Python "
"programming language. Try adding a <b>repeat</b> block and watch what happens in Python."
)
return build_description(title_level83(), message)
Expand All @@ -1794,7 +1794,7 @@ def title_level84():

def description_level84():
message = (
"As you create your program using Blockly see what it looks like in the Python "
"As you create your program using Blockly, see what it looks like in the Python "
"programming language. Try adding a <b>repeat</b> block and watch what happens in Python."
)
return build_description(title_level84(), message)
Expand All @@ -1811,7 +1811,7 @@ def title_level85():

def description_level85():
message = (
"As you create your program using Blockly see what it looks like in the Python "
"As you create your program using Blockly, see what it looks like in the Python "
"programming language. Try adding a <b>repeat</b> until block and watch what "
"happens in Python."
)
Expand All @@ -1829,7 +1829,7 @@ def title_level86():

def description_level86():
message = (
"As you create your program using Blockly see what it looks like in the Python "
"As you create your program using Blockly, see what it looks like in the Python "
"programming language. Try adding an <b>if</b> block and watch what happens in Python."
)
return build_description(title_level86(), message)
Expand All @@ -1845,7 +1845,7 @@ def title_level87():

def description_level87():
message = (
"As you create your program using Blockly see what it looks like in the Python "
"As you create your program using Blockly, see what it looks like in the Python "
"programming language. Try adding an <b>if</b> block and watch what happens in "
"Python particularly with <b>else if</b> and <b>else</b> statements."
)
Expand All @@ -1862,7 +1862,7 @@ def title_level88():

def description_level88():
message = (
"As you create your program using Blockly see what it looks like in the Python "
"As you create your program using Blockly, see what it looks like in the Python "
"programming language. Try adding an <b>if</b> block and watch what happens in "
"Python particularly with <b>else if</b> and <b>else</b> statements."
)
Expand All @@ -1879,7 +1879,7 @@ def title_level89():

def description_level89():
message = (
"As you create your program using Blockly see what it looks like in the Python "
"As you create your program using Blockly, see what it looks like in the Python "
"programming language. Try adding an <b>if</b> block and watch what happens in "
"Python particularly with <b>else if</b> and <b>else</b> statements."
)
Expand All @@ -1896,7 +1896,7 @@ def title_level90():

def description_level90():
message = (
"As you create your program using Blockly see what it looks like in the Python "
"As you create your program using Blockly, see what it looks like in the Python "
"language. Try adding a procedure and watch what happens in Python."
)
return build_description(title_level90(), message)
Expand All @@ -1915,7 +1915,7 @@ def title_level91():

def description_level91():
message = (
"As you create your program using Blockly see what it looks like in the Python "
"As you create your program using Blockly, see what it looks like in the Python "
"language. Try adding a procedure and watch what happens in Python."
)
return build_description(title_level91(), message)
Expand Down

0 comments on commit f40daa5

Please sign in to comment.