summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordluyer <53582923+dluyer@users.noreply.github.com>2020-01-16 17:48:09 -0800
committerGitHub <noreply@github.com>2020-01-16 17:48:09 -0800
commitfad909459019d3d38726a2503b7fb49e1cf80de3 (patch)
tree7bec9e62066ca2c6db98f71c682ecc204db1181b
parent6977ee3791764f4dd7f32380c4e96cb8216fb573 (diff)
parent65d3c80c80fb43deb17e20eae36bcad79ee1fc54 (diff)
downloadpexpect-git-fad909459019d3d38726a2503b7fb49e1cf80de3.tar.gz
Merge pull request #617 from slel/patch-1
Fix typos in pxssh docs
-rw-r--r--doc/api/pxssh.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/pxssh.rst b/doc/api/pxssh.rst
index 86b4cf0..e82d950 100644
--- a/doc/api/pxssh.rst
+++ b/doc/api/pxssh.rst
@@ -10,11 +10,11 @@ pxssh - control an SSH session
Paramiko is a Python module which speaks the SSH protocol directly, so it
doesn't have the extra complexity of running a local subprocess.
RedExpect is very similar to pxssh except that it reads and writes directly
- into an SSH session all done via python with all the SSH protocol in C,
+ into an SSH session all done via Python with all the SSH protocol in C,
additionally it is written for communicating to SSH servers that are not just
Linux machines. Meaning that it is extremely fast in comparison to Paramiko
and already has the familiar expect API. In most cases RedExpect and pxssh
- code should be fairly interchangable.
+ code should be fairly interchangeable.
.. automodule:: pexpect.pxssh
@@ -34,7 +34,7 @@ pxssh class
.. attribute:: force_password
- If this is set to True, public key authentication is disabled, forcing the
+ If this is set to ``True``, public key authentication is disabled, forcing the
server to ask for a password. Note that the sysadmin can disable password
logins, in which case this won't work.