Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorДобрый Ээх <bukharaev@gmail.com>2016-10-12 12:28:48 +0300
committerДобрый Ээх <bukharaev@gmail.com>2016-10-12 12:28:48 +0300
commit8c48a61a963162ff17a07342d930b8d0f5a1cf76 (patch)
treec091e6609893c882cda78ac85bf82d19c7948a1a /platform
parentfa9b6c3805e070ae78633d35db3cf0c30bd80ea6 (diff)
pull request #4478 review fixes
Diffstat (limited to 'platform')
-rw-r--r--platform/socket.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/socket.hpp b/platform/socket.hpp
index c29474902e..ebc87dc816 100644
--- a/platform/socket.hpp
+++ b/platform/socket.hpp
@@ -14,7 +14,7 @@ public:
// 1. You can call Open+Close pair multiple times for the same Socket instance.
// 2. There are should be Close call after each Open call.
// 3. Open+Open: second Open does nothing and returns false.
- // 4. Close+Close: second Close does nothing,
+ // 4. Close+Close: second Close does nothing.
virtual bool Open(string const & host, uint16_t port) = 0;
virtual void Close() = 0;