Skip to content

Commit 4165bfb

Browse files
committed
#12940: fix cmd example. Patch by Tim Chase.
1 parent aaa8991 commit 4165bfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/cmd.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ immediate playback::
247247
right(*parse(arg))
248248
def do_left(self, arg):
249249
'Turn turtle left by given number of degrees: LEFT 90'
250-
right(*parse(arg))
250+
left(*parse(arg))
251251
def do_goto(self, arg):
252252
'Move turtle to an absolute position with changing orientation. GOTO 100 200'
253253
goto(*parse(arg))

0 commit comments

Comments
 (0)