From 78c21308fa543801304072c543d3ea44b4aa7123 Mon Sep 17 00:00:00 2001 From: Klemens Morgenstern Date: Fri, 17 Feb 2023 13:54:34 +0800 Subject: [PATCH] Doc grammar & reference corrections. Closes #2578 & #2634. --- doc/qbk/04_http/05_parser_streams.qbk | 10 +++++----- doc/qbk/06_websocket/06_timeouts.qbk | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/qbk/04_http/05_parser_streams.qbk b/doc/qbk/04_http/05_parser_streams.qbk index 82178714..3a9d2171 100644 --- a/doc/qbk/04_http/05_parser_streams.qbk +++ b/doc/qbk/04_http/05_parser_streams.qbk @@ -73,22 +73,22 @@ The stream operations which work on parsers are: [[ [link beast.ref.boost__beast__http__read.overload1 [*read]] ][ - Read everything into a parser from a __SyncWriteStream__. + Read everything into a parser from a __SyncReadStream__. ]] [[ [link beast.ref.boost__beast__http__async_read.overload1 [*async_read]] ][ - Read everything into a parser asynchronously from an __AsyncWriteStream__. + Read everything into a parser asynchronously from an __AsyncReadStream__. ]] [[ [link beast.ref.boost__beast__http__read_header.overload1 [*read_header]] ][ - Read only the header octets into a parser from a __SyncWriteStream__. + Read only the header octets into a parser from a __SyncReadStream__. ]] [[ [link beast.ref.boost__beast__http__async_read_header [*async_read_header]] ][ - Read only the header octets into a parser asynchronously from an __AsyncWriteStream__. + Read only the header octets into a parser asynchronously from an __AsyncReadStream__. ]] [[ [link beast.ref.boost__beast__http__read_some.overload1 [*read_some]] @@ -98,7 +98,7 @@ The stream operations which work on parsers are: [[ [link beast.ref.boost__beast__http__async_read_some [*async_read_some]] ][ - Read some octets into a parser asynchronously from an __AsyncWriteStream__. + Read some octets into a parser asynchronously from an __AsyncReadStream__. ]] ] diff --git a/doc/qbk/06_websocket/06_timeouts.qbk b/doc/qbk/06_websocket/06_timeouts.qbk index 69d504b8..cc27dbc6 100644 --- a/doc/qbk/06_websocket/06_timeouts.qbk +++ b/doc/qbk/06_websocket/06_timeouts.qbk @@ -17,7 +17,7 @@ While general logical operations, the websocket stream has a more sophisticated timeout mechanism built-in which may be enabled and configured. The timeout features of the TCP or basic stream should not be used when working with a websocket -stream. The interface to these timeout features is show in this table. +stream. The interface to these timeout features is shown in this table. [table WebSocket Timeout Interface [[Name][Description]]