Fix documentation for basic_stream::expires_after

Resolves #2664
This commit is contained in:
Mohammad Nejati
2024-01-18 12:53:36 +00:00
committed by Mohammad Nejati
parent a1784e3093
commit c9858357f8

View File

@@ -450,7 +450,7 @@ public:
return impl_->policy(); return impl_->policy();
} }
/** Set the timeout for the next logical operation. /** Set the timeout for subsequent logical operations.
This sets either the read timer, the write timer, or This sets either the read timer, the write timer, or
both timers to expire after the specified amount of time both timers to expire after the specified amount of time
@@ -473,7 +473,7 @@ public:
expires_after( expires_after(
net::steady_timer::duration expiry_time); net::steady_timer::duration expiry_time);
/** Set the timeout for the next logical operation. /** Set the timeout for subsequent logical operations.
This sets either the read timer, the write timer, or both This sets either the read timer, the write timer, or both
timers to expire at the specified time point. If a timer timers to expire at the specified time point. If a timer
@@ -495,7 +495,7 @@ public:
void void
expires_at(net::steady_timer::time_point expiry_time); expires_at(net::steady_timer::time_point expiry_time);
/// Disable the timeout for the next logical operation. /// Disable the timeout for subsequent logical operations.
void void
expires_never(); expires_never();