From edc9e89bad9da6512d8d192f65207149920e87f8 Mon Sep 17 00:00:00 2001 From: Christopher Kohlhoff Date: Tue, 15 Mar 2011 09:58:37 +1100 Subject: [PATCH] Fix error in comment. --- asio/include/asio/ssl/detail/io.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/asio/include/asio/ssl/detail/io.hpp b/asio/include/asio/ssl/detail/io.hpp index 750c53f6..749dfad7 100644 --- a/asio/include/asio/ssl/detail/io.hpp +++ b/asio/include/asio/ssl/detail/io.hpp @@ -122,7 +122,7 @@ public: // The engine wants more data to be read from input. However, we cannot // allow more than one read operation at a time on the underlying - // transport. The pending_read_ timer's expiry is to pos_infin if a + // transport. The pending_read_ timer's expiry is set to pos_infin if a // read is in progress, and neg_infin otherwise. if (core_.pending_read_.expires_at() == boost::posix_time::neg_infin) { @@ -148,7 +148,7 @@ public: // The engine wants some data to be written to the output. However, we // cannot allow more than one write operation at a time on the - // underlying transport. The pending_write_ timer's expiry is to + // underlying transport. The pending_write_ timer's expiry is set to // pos_infin if a write is in progress, and neg_infin otherwise. if (core_.pending_write_.expires_at() == boost::posix_time::neg_infin) {