Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Doc/library/cmd.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ interface.
Note that other values are not treated this way, and might only work
with a specific backend.

The optional arguments *stdin* and *stdout* specify the input and output file
objects that the Cmd instance or subclass instance will use for input and
The optional arguments *stdin* and *stdout* specify the input and output file
objects that the Cmd instance or subclass instance will use for input and
output. If not specified, they will default to :data:`sys.stdin` and
:data:`sys.stdout`.

Expand Down Expand Up @@ -283,7 +283,7 @@ immediate playback::
'Return turtle to the home position: HOME'
home()
def do_circle(self, arg):
'Draw circle with given radius an options extent and steps: CIRCLE 50'
'Draw circle with given radius, an optional extent and steps: CIRCLE 50'
Comment thread
This conversation was marked as resolved.
Outdated
circle(*parse(arg))
def do_position(self, arg):
'Print the current turtle position: POSITION'
Expand Down
Loading