소스 검색

Update Rustdoc comment on package.

Andrew Walbran 1 년 전
부모
커밋
3bc40e3605
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/device/socket/mod.rs

+ 2 - 2
src/device/socket/mod.rs

@@ -2,8 +2,8 @@
 //!
 //! To use the driver, you should first create a [`VirtIOSocket`] instance with your VirtIO
 //! transport, and then create a [`VsockConnectionManager`] wrapping it to keep track of
-//! connections. If you only want to have a single outgoing vsock connection at once, you can use
-//! [`SingleConnectionManager`] for a slightly simpler interface.
+//! connections. If you want to manage connections yourself you can use the `VirtIOSocket` directly
+//! for a lower-level interface.
 //!
 //! See [`VsockConnectionManager`] for a usage example.