diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-02-26 01:15:44 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-02-26 01:15:44 +0100 |
commit | e2b9e80244abe0712b8d7e3a8f9e3a3474072a4b (patch) | |
tree | 7de305b3f7439eae3e148264fd8191a5021587e4 | |
parent | 76b131e13a842657b899d8852efb0f92b2d32145 (diff) | |
download | biboumi-e2b9e80244abe0712b8d7e3a8f9e3a3474072a4b.tar.gz biboumi-e2b9e80244abe0712b8d7e3a8f9e3a3474072a4b.tar.bz2 biboumi-e2b9e80244abe0712b8d7e3a8f9e3a3474072a4b.tar.xz biboumi-e2b9e80244abe0712b8d7e3a8f9e3a3474072a4b.zip |
Fix a wrong comment
-rw-r--r-- | src/network/socket_handler.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/network/socket_handler.hpp b/src/network/socket_handler.hpp index 04e215a..fcc8734 100644 --- a/src/network/socket_handler.hpp +++ b/src/network/socket_handler.hpp @@ -82,8 +82,8 @@ public: protected: socket_t socket; /** - * Where data read from the socket is added, until we can parse a whole - * IRC message, the used data is then removed from that buffer. + * Where data read from the socket is added until we can extract a full + * and meaningful “message” from it. * * TODO: something more efficient than a string. */ |