diff --git a/doc/man7/ossl-guide-quic-client-non-block.pod b/doc/man7/ossl-guide-quic-client-non-block.pod index 77b36b1a5c359..f07e9cc669253 100644 --- a/doc/man7/ossl-guide-quic-client-non-block.pod +++ b/doc/man7/ossl-guide-quic-client-non-block.pod @@ -341,7 +341,8 @@ data on a retry. An optional mode does exist the buffer being written to change from one retry to the next. However, in this case, you must still retry exactly the same data - even though the buffer that contains that data may change location. See L for further -details. As in the TLS tutorials we write the request in three chunks. +details. As in the TLS tutorials (L) we write +the request in three chunks. /* Write an HTTP GET request to the peer */ while (!SSL_write_ex(ssl, request_start, strlen(request_start), &written)) { diff --git a/doc/man7/ossl-guide-tls-client-non-block.pod b/doc/man7/ossl-guide-tls-client-non-block.pod index 426e5bfff2fac..ee03f6624bc70 100644 --- a/doc/man7/ossl-guide-tls-client-non-block.pod +++ b/doc/man7/ossl-guide-tls-client-non-block.pod @@ -252,7 +252,8 @@ retry. An optional mode does exist (B) which will configure OpenSSL to allow the buffer being written to change from one retry to the next. However, in this case, you must still retry exactly the same data - even though the buffer that contains that data may change location. -See L for further details. As before we write the request +See L for further details. As in the TLS client +blocking tutorial (L) we write the request in three chunks. /* Write an HTTP GET request to the peer */