summaryrefslogtreecommitdiff
path: root/paramiko/message.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/message.py
parent3f9270c0be18b09cd39279730eac125776adbedc (diff)
downloadparamiko-f09b562fa874d3358daa7dfd4ca7f2c8b5d47b68.tar.gz
Replace accidental class-refs on local method-refs
Diffstat (limited to 'paramiko/message.py')
-rw-r--r--paramiko/message.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/paramiko/message.py b/paramiko/message.py
index 85fb3c09..3937938b 100644
--- a/paramiko/message.py
+++ b/paramiko/message.py
@@ -91,7 +91,7 @@ class Message (object):
"""
Returns the bytes of this Message that have been parsed and returned.
The string passed into a Message's constructor can be regenerated by
- concatenating ``get_so_far`` and :class:`get_remainder`.
+ concatenating ``get_so_far`` and `get_remainder`.
:return: a string of the bytes parsed so far.
:rtype: string
@@ -118,7 +118,7 @@ class Message (object):
def get_byte(self):
"""
Return the next byte of the Message, without decomposing it. This
- is equivalent to :class:`get_bytes(1)<get_bytes>`.
+ is equivalent to `get_bytes(1) <get_bytes>`.
:return: the next byte of the Message, or ``'\000'`` if there aren't
any bytes remaining.