diff options
author | Tim Golden <mail@timgolden.me.uk> | 2015-04-08 15:52:27 (GMT) |
---|---|---|
committer | Tim Golden <mail@timgolden.me.uk> | 2015-04-08 15:52:27 (GMT) |
commit | fe5ac52c2bc1489c16652795bbdf2b21ae9a10f2 (patch) | |
tree | 09d21db00a9001f97b4404f26fc9a94c0962e55c /Doc | |
parent | 6f362fa6c83abe4c8bdbd7dfd2f27e777995f765 (diff) | |
download | cpython-fe5ac52c2bc1489c16652795bbdf2b21ae9a10f2.zip cpython-fe5ac52c2bc1489c16652795bbdf2b21ae9a10f2.tar.gz cpython-fe5ac52c2bc1489c16652795bbdf2b21ae9a10f2.tar.bz2 |
Fix typo in telnet docs (reported by Keith Briggs)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/telnetlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/telnetlib.rst b/Doc/library/telnetlib.rst index 31e5dbb..4040f72 100644 --- a/Doc/library/telnetlib.rst +++ b/Doc/library/telnetlib.rst @@ -31,7 +31,7 @@ Character), EL (Erase Line), GA (Go Ahead), SB (Subnegotiation Begin). :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 |