diff options
author | delirious-lettuce <delirious.lettuce@gmail.com> | 2017-05-19 20:37:57 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-05-19 20:37:57 (GMT) |
commit | 3378b2062c7fbb77a9b5e6d315d6b94160fac69a (patch) | |
tree | 7cfeb0047ea14f4a77c4fb5a6fd4a233120c96e0 /Doc/library/cmd.rst | |
parent | a632d00a1cbb6f4f8978cb45dd9789658cceb7c8 (diff) | |
download | cpython-3378b2062c7fbb77a9b5e6d315d6b94160fac69a.zip cpython-3378b2062c7fbb77a9b5e6d315d6b94160fac69a.tar.gz cpython-3378b2062c7fbb77a9b5e6d315d6b94160fac69a.tar.bz2 |
Fix typos in multiple `.rst` files (#1668)
Diffstat (limited to 'Doc/library/cmd.rst')
-rw-r--r-- | Doc/library/cmd.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/cmd.rst b/Doc/library/cmd.rst index f40cfdf..3b4a8ff 100644 --- a/Doc/library/cmd.rst +++ b/Doc/library/cmd.rst @@ -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' |