We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a91df0 commit a1f9770Copy full SHA for a1f9770
embassy/src/client.rs
@@ -8,7 +8,7 @@ use sunset::ChanData;
8
use embassy_sunset::{EmbassySunset, ProgressHolder};
9
use embassy_channel::{ChanInOut, ChanIn};
10
11
-/// An async SSH client instance
+/// An async SSH client instance
12
///
13
/// The [`run()`][Self::run] method runs the session to completion. [`progress()`][Self::progress]
14
/// must be polled, and responses given to the events provided.
@@ -62,7 +62,7 @@ impl<'a> SSHClient<'a> {
62
Ok((cstd, cerr))
63
}
64
65
- pub async fn open_session_pty(&'a self) -> Result<ChanInOut<'_, 'a>> {
+ pub async fn open_session_pty(&'a self) -> Result<ChanInOut<'a, 'a>> {
66
let chan = self.sunset.with_runner(|runner| {
67
runner.open_client_session()
68
}).await?;
0 commit comments