From 3e435cff7f29390f495a495df1d735b6196bd87b Mon Sep 17 00:00:00 2001 From: Adam Bratschi-Kaye Date: Sun, 30 Jun 2024 13:20:32 +0200 Subject: [PATCH] docs(client): Include exec arg in client::conn::http2::handshake doc (#3694) --- src/client/conn/http2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/conn/http2.rs b/src/client/conn/http2.rs index 6d967713d8..df78691901 100644 --- a/src/client/conn/http2.rs +++ b/src/client/conn/http2.rs @@ -63,7 +63,7 @@ pub struct Builder { /// Returns a handshake future over some IO. /// -/// This is a shortcut for `Builder::new().handshake(io)`. +/// This is a shortcut for `Builder::new(exec).handshake(io)`. /// See [`client::conn`](crate::client::conn) for more. pub async fn handshake( exec: E,