Skip to content

Commit f2d223c

Browse files
committed
Update turtleFAP.rst
Fix two blocks that could be out of order
1 parent fb444e3 commit f2d223c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

_sources/turtles/turtleFAP.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,12 +152,10 @@ The program below uses the ``goto(x,y)`` to move to the top left corner before d
152152
from turtle import *
153153
=====
154154
space = Screen()
155-
=====
156-
space = screen() #paired
157-
=====
158155
ella = Turtle()
159156
=====
160-
ella = Turtle #paired
157+
space = screen()
158+
ella = turtle() #paired
161159
=====
162160
ella.left(60)
163161
ella.forward(100)

0 commit comments

Comments
 (0)