diff options
author | cos <cos> | 2021-08-04 15:37:34 +0200 |
---|---|---|
committer | cos <cos> | 2021-08-04 15:37:34 +0200 |
commit | 883ba42f6c9a1eeb5377279707745afa7af3f864 (patch) | |
tree | 61f2fe14c41d862b6946304b87ed1f184220859f | |
parent | 40d7d18415324205a9ba7ddd1c08b9f0fade42ec (diff) | |
download | ssh2-rs-fix/async-advice-2.zip |
Skip another mention of deprecated cratefix/async-advice-2
Please see previous commit by Evan Mesterhazy for details
-rw-r--r-- | src/session.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/session.rs b/src/session.rs index a1fa674..544593e 100644 --- a/src/session.rs +++ b/src/session.rs @@ -121,8 +121,7 @@ unsafe impl Send for SessionInner {} /// This means that a blocking read from a `Channel` or `Stream` will block /// all other calls on objects created from the same underlying `Session`. /// If you need the ability to perform concurrent operations then you will -/// need to create separate `Session` instances, or employ non-blocking mode, -/// perhaps using the `async-ssh2` crate. +/// need to create separate `Session` instances, or employ non-blocking mode. #[derive(Clone)] pub struct Session { inner: Arc<Mutex<SessionInner>>, |