diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2010-09-21 09:10:17 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2010-09-21 09:10:17 +0200 |
commit | e478468e52fcb085f9d429cee5dd6938c80343bc (patch) | |
tree | 2f2930f8a9c7f082b8d2afd3055d690651e2d37b | |
parent | 9c118866003277222173ea04916c3e3b82c88b95 (diff) |
minor error in comment fixed
-rw-r--r-- | src/socket_base.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/socket_base.hpp b/src/socket_base.hpp index 8f662e9..9091548 100644 --- a/src/socket_base.hpp +++ b/src/socket_base.hpp @@ -164,8 +164,8 @@ namespace zmq // If true there's a half-read message in the socket. bool rcvmore; - // Lists of existing sessions. This lists are never referenced from - // within the socket, instead they are used by objects owned by + // Lists of existing sessions. This list is never referenced from + // within the socket, instead it is used by objects owned by // the socket. As those objects can live in different threads, // the access is synchronised by mutex. typedef std::map <blob_t, session_t*> sessions_t; |