summaryrefslogtreecommitdiffstats
path: root/Doc/library/turtle.rst
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2015-06-15 00:35:37 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2015-06-15 00:35:37 (GMT)
commitb4760efbadb1a780719bb62398949d5d6ef0605e (patch)
treed90781545f69d66cd3e7395b9926e2af459f2f56 /Doc/library/turtle.rst
parent1c90670bc2eaf55517b85d99d206d328a714b828 (diff)
downloadcpython-b4760efbadb1a780719bb62398949d5d6ef0605e.zip
cpython-b4760efbadb1a780719bb62398949d5d6ef0605e.tar.gz
cpython-b4760efbadb1a780719bb62398949d5d6ef0605e.tar.bz2
Back porting changeset db302b88fdb6 to 3.4 branch, which fixed multiple documentation typos.
Related Issues: #issue21528 #issue24453
Diffstat (limited to 'Doc/library/turtle.rst')
-rw-r--r--Doc/library/turtle.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/turtle.rst b/Doc/library/turtle.rst
index 5899f3d..efe5c54 100644
--- a/Doc/library/turtle.rst
+++ b/Doc/library/turtle.rst
@@ -1809,7 +1809,7 @@ Input methods
Pop up a dialog window for input of a number. title is the title of the
dialog window, prompt is a text mostly describing what numerical information
- to input. default: default value, minval: minimum value for imput,
+ to input. default: default value, minval: minimum value for input,
maxval: maximum value for input
The number input must be in the range minval .. maxval if these are
given. If not, a hint is issued and the dialog remains open for
@@ -2402,7 +2402,7 @@ Changes since Python 3.0
Accordingly the latter has got an alias: :meth:`Screen.onkeyrelease`.
- The method :meth:`Screen.mainloop` has been added. So when working only
- with Screen and Turtle objects one must not additonally import
+ with Screen and Turtle objects one must not additionally import
:func:`mainloop` anymore.
- Two input methods has been added :meth:`Screen.textinput` and