Fix error in comment.

This commit is contained in:
Christopher Kohlhoff 2011-03-15 09:58:37 +11:00
parent 99d7275adc
commit edc9e89bad

View File

@ -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)
{