Skip to content

Commit fd173f7

Browse files
committed
fix bug in background photo
1 parent ad77d59 commit fd173f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/teachingkidsprogramming/recipes/completed/section04mastery/BackgroundPhoto.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static void main(String[] args)
3232
// Set the Y position of the tortoise to 65 pixels --#2.1
3333
Tortoise.setY(65);
3434
// Turn the tortoise 1/3rd of 360 degrees to the right --#4
35-
Tortoise.turn(360 / 4);
35+
Tortoise.turn(360 / 3);
3636
// Turn the tortoise 1 more degree --#5
3737
Tortoise.turn(1);
3838
// End Repeat --#7.2

0 commit comments

Comments
 (0)