diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/src/connection.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/src/connection.rs b/net/src/connection.rs index 950f171..d8ec0a3 100644 --- a/net/src/connection.rs +++ b/net/src/connection.rs @@ -9,8 +9,8 @@ pub type Conn = Box<dyn Connection>; /// Connection is a generic network connection interface for /// [`udp::UdpConn`], [`tcp::TcpConn`], and [`unix::UnixConn`]. /// -/// If you are familiar with the Go language, this is similar to the -/// [Conn](https://pkg.go.dev/net#Conn) interface +/// If you are familiar with the Go language, this is similar to the +/// [Conn](https://pkg.go.dev/net#Conn) interface #[async_trait] pub trait Connection: Send + Sync { /// Returns the remote peer endpoint of this connection |