summaryrefslogtreecommitdiff
path: root/paramiko/__init__.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-02-21 12:15:29 -0800
committerJeff Forcier <jeff@bitprophet.org>2014-02-21 12:15:29 -0800
commitf09b562fa874d3358daa7dfd4ca7f2c8b5d47b68 (patch)
treecbfaf1d61ad359bf52781d61654da67662a2eacd /paramiko/__init__.py
parent3f9270c0be18b09cd39279730eac125776adbedc (diff)
downloadparamiko-f09b562fa874d3358daa7dfd4ca7f2c8b5d47b68.tar.gz
Replace accidental class-refs on local method-refs
Diffstat (limited to 'paramiko/__init__.py')
-rw-r--r--paramiko/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/paramiko/__init__.py b/paramiko/__init__.py
index 1f7f6bc3..b7a2efb6 100644
--- a/paramiko/__init__.py
+++ b/paramiko/__init__.py
@@ -28,8 +28,8 @@ services across an encrypted tunnel. (This is how ``sftp`` works, for example.)
The high-level client API starts with creation of an :class:`.SSHClient` object.
For more direct control, pass a socket (or socket-like object) to a
-:class:`.Transport`, and use :class:`start_server <Transport.start_server>` or
-:class:`start_client <Transport.start_client>` to negoatite
+:class:`.Transport`, and use `start_server <.Transport.start_server>` or
+`start_client <.Transport.start_client>` to negoatite
with the remote host as either a server or client. As a client, you are
responsible for authenticating using a password or private key, and checking
the server's host key. (Key signature and verification is done by paramiko,