summaryrefslogtreecommitdiff
path: root/pexpect/socket_pexpect.py
diff options
context:
space:
mode:
Diffstat (limited to 'pexpect/socket_pexpect.py')
-rw-r--r--pexpect/socket_pexpect.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pexpect/socket_pexpect.py b/pexpect/socket_pexpect.py
index 5bee9b1..cb11ac2 100644
--- a/pexpect/socket_pexpect.py
+++ b/pexpect/socket_pexpect.py
@@ -1,5 +1,5 @@
-"""This is like pexpect, but it will work with any socket that you
-pass it. You are responsible for opening and close the socket.
+"""This is like :mod:`pexpect`, but it will work with any socket that you
+pass it. You are responsible for opening and closing the socket.
PEXPECT LICENSE
@@ -30,7 +30,7 @@ __all__ = ["SocketSpawn"]
class SocketSpawn(SpawnBase):
- """This is like pexpect.fdspawn but uses the cross-platform python socket api,
+ """This is like :mod:`pexpect.fdpexpect` but uses the cross-platform python socket api,
rather than the unix-specific file descriptor api. Thus, it works with
remote connections on both unix and windows."""