Skip to content

Commit 105e9d8

Browse files
committed
Updated English in SpiderWeb per Matt
1 parent 0051a47 commit 105e9d8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/org/teachingkidsprogramming/section05recursion/SpiderWeb.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ public static void main(String[] args)
1919
//
2020
// ------------- Recipe for drawTriangle --#4.2
2121
// Do the following 3 times --#3
22-
// Move the tortoise the length of a line --#1.1
22+
// Move the tortoise the current length (of the line) --#1.1
2323
// Turn the tortoise 1/3rd of 360 degrees --#2
2424
// Repeat
2525
// ------------- End of drawTriangle recipe --#4.3
2626
//
2727
// Turn the tortoise 1/6th of 360 degrees to the right --#7
28-
// Increase the length of the line by the current zoom --#8.1
28+
// Increase the current length (of the line) by the current zoom --#8.1
2929
// Repeat --#5.2
30-
// ------------- End of weaveOneLayer recipe --#9.2
30+
// ------------- End of weaveOneLayer recipe --#9.3
3131
//
32-
// Change the zoom so it is multiplied by 1.3 --#11
32+
// Change the current zoom so it is multiplied by 1.3 --#11
3333
// Repeat
3434
}
3535
}

src/org/teachingkidsprogramming/section05recursion/TreeQuiz.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public void questions1To4()
2222
// Question 3
2323
// setNinety (recipe below)
2424
// ------------- Recipe for setNinety
25-
// set the current turn angle to 90, HINT: Use angles
25+
// set the current turn angle to 90, HINT: Use angles.put(key,value);
2626
// ------------- End of setNinety recipe
2727
//
2828
// Question 4

0 commit comments

Comments
 (0)