diff -r dba886806eb3 Doc/library/cmd.rst --- a/Doc/library/cmd.rst Sat Sep 10 01:16:55 2011 +0200 +++ b/Doc/library/cmd.rst Fri Sep 09 18:48:21 2011 -0500 @@ -247,7 +247,7 @@ right(*parse(arg)) def do_left(self, arg): 'Turn turtle left by given number of degrees: LEFT 90' - right(*parse(arg)) + left(*parse(arg)) def do_goto(self, arg): 'Move turtle to an absolute position with changing orientation. GOTO 100 200' goto(*parse(arg))