Fix typos in multiple .rst files (#1668)

This commit is contained in:
delirious-lettuce 2017-05-19 14:37:57 -06:00 committed by Serhiy Storchaka
parent a632d00a1c
commit 3378b2062c
18 changed files with 31 additions and 31 deletions

View file

@ -266,10 +266,10 @@ immediate playback::
'Draw circle with given radius an options extent and steps: CIRCLE 50'
circle(*parse(arg))
def do_position(self, arg):
'Print the current turle position: POSITION'
'Print the current turtle position: POSITION'
print('Current position is %d %d\n' % position())
def do_heading(self, arg):
'Print the current turle heading in degrees: HEADING'
'Print the current turtle heading in degrees: HEADING'
print('Current heading is %d\n' % (heading(),))
def do_color(self, arg):
'Set the color: COLOR BLUE'