[Python-checkins] cpython (3.4): Fix typo in telnet docs (reported by Keith Briggs)

tim.golden python-checkins at python.org
Wed Apr 8 17:54:13 CEST 2015


https://hg.python.org/cpython/rev/283036fe48e2
changeset:   95492:283036fe48e2
branch:      3.4
parent:      95488:4eb197bfffb6
user:        Tim Golden <mail at timgolden.me.uk>
date:        Wed Apr 08 16:52:27 2015 +0100
summary:
  Fix typo in telnet docs (reported by Keith Briggs)

files:
  Doc/library/telnetlib.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/telnetlib.rst b/Doc/library/telnetlib.rst
--- a/Doc/library/telnetlib.rst
+++ b/Doc/library/telnetlib.rst
@@ -31,7 +31,7 @@
    :class:`Telnet` represents a connection to a Telnet server. The instance is
    initially not connected by default; the :meth:`open` method must be used to
    establish a connection.  Alternatively, the host name and optional port
-   number can be passed to the constructor, to, in which case the connection to
+   number can be passed to the constructor too, in which case the connection to
    the server will be established before the constructor returns.  The optional
    *timeout* parameter specifies a timeout in seconds for blocking operations
    like the connection attempt (if not specified, the global default timeout

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list