Browse Source

Fix typo in docstring.
Remove "above" from a docstring as some aren't really "above".


git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@848 e5f2f494-b856-4b98-b285-d166d9295462

Jeremy C. Reed 15 years ago
parent
commit
42488e3ae4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/bin/msgq/msgq.py.in

+ 2 - 2
src/bin/msgq/msgq.py.in

@@ -215,7 +215,7 @@ class MsgQ:
 
     def process_command(self, fd, sock, routing, data):
         """Process a single command.  This will split out into one of the
-           other functions, above."""
+           other functions."""
         print("[XX] got command: ")
         print(routing)
         cmd = routing["type"]
@@ -251,7 +251,7 @@ class MsgQ:
         sock.send(msg)
 
     def newlname(self):
-        """Generate a unique conenction identifier for this socket.
+        """Generate a unique connection identifier for this socket.
         This is done by using an increasing counter and the current
         time."""
         self.connection_counter += 1