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):
     def process_command(self, fd, sock, routing, data):
         """Process a single command.  This will split out into one of the
         """Process a single command.  This will split out into one of the
-           other functions, above."""
+           other functions."""
         print("[XX] got command: ")
         print("[XX] got command: ")
         print(routing)
         print(routing)
         cmd = routing["type"]
         cmd = routing["type"]
@@ -251,7 +251,7 @@ class MsgQ:
         sock.send(msg)
         sock.send(msg)
 
 
     def newlname(self):
     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
         This is done by using an increasing counter and the current
         time."""
         time."""
         self.connection_counter += 1
         self.connection_counter += 1